]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/audio-element.hh
2003 -> 2004
[lilypond.git] / lily / include / audio-element.hh
index c870887c6f7bb420ef262d97a93b496df3289c69..cfb392de1bf8427801df8873e53217bd661ff182 100644 (file)
@@ -3,21 +3,28 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
 #ifndef AUDIO_ELEMENT_HH
 #define AUDIO_ELEMENT_HH
 
+ #include <typeinfo>
 #include "virtual-methods.hh"
 
-struct Audio_element {
-  void print ()const;
+class Audio_element
+{
+public:
+  Audio_element ();
+  virtual ~Audio_element ();
+
+
+
+  // should we use a scm list?
+  bool grace_b_;
   
-  virtual ~Audio_element();
-  DECLARE_MY_RUNTIME_TYPEINFO;
 protected:
-  virtual void do_print () const;
 };
+
 #endif // AUDIO_ELEMENT_HH