]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.1.47
authorfred <fred>
Sun, 24 Mar 2002 20:06:04 +0000 (20:06 +0000)
committerfred <fred>
Sun, 24 Mar 2002 20:06:04 +0000 (20:06 +0000)
Documentation/Makefile
flower/dictionary.cc [new file with mode: 0644]
lily/VERSION
lily/musical-request.cc

index 48df92b09df5f5ec6701420b9cdbe7c31e8468aa..d6a4cf732e55abb5e39def924a50d2d6ab0c7924 100644 (file)
@@ -58,7 +58,7 @@ include $(depth)/make/Rules.make
 #
 
 localclean:
-       rm -f `find $(outdir)`
+       rm -f `find $(outdir) -type f`
 
 
 
diff --git a/flower/dictionary.cc b/flower/dictionary.cc
new file mode 100644 (file)
index 0000000..d8e5028
--- /dev/null
@@ -0,0 +1,37 @@
+
+#if 0
+
+
+/**
+   neuk. hsearch_* is te dom.
+ */
+template<class T>
+class Dictionary<T>
+{
+  hsearch_data * hash_p_;
+  
+public:
+  Dictionary ();
+  ~Dictionary ();
+  Dictionary (Dictionary const&);
+  T &elem (String s);
+  T const &elem (String s) const;
+  bool elt_b (String s) const;
+  void add (String, T);
+  void clear ();
+}
+
+Dictionary::Dictionary ()
+{
+  hash_p_ = new hsearch_data;
+  hash_p_->table = 0;
+
+  int start_size = 51;
+  int retval = hcreate_r (start_size, hash_p_);
+
+  assert (retval);
+}
+
+
+
+#endif
index 60de7033458d7d2bd0222d2a2102de125568fcd8..9da9e31cad325fe91dca3b25db10fb4f9e59d9db 100644 (file)
@@ -1,4 +1,4 @@
 MAJOR_VERSION = 0
 MINOR_VERSION = 1
-PATCH_LEVEL = 46
+PATCH_LEVEL = 47
 MY_PATCH_LEVEL =
index bf2fe3590b9cddb92c3705be72f0b6c659993e79..bc46309810682d6bad89d9c4e7c7eac3872acbf7 100644 (file)
@@ -198,7 +198,8 @@ Rhythmic_req::do_print() const
 
 
 Moment
-Rhythmic_req::duration() const {
+Rhythmic_req::duration() const
+{
   return duration_.length();
 }
 /* *************** */