]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/bar.hh
release: 0.0.75
[lilypond.git] / lily / include / bar.hh
index 3727358d96f3c2659e537a467dcfba1a65f0c23f..ccef49e2bf47bda6321b913924c394cca355d4c1 100644 (file)
@@ -1,5 +1,5 @@
 /*
-  bar.hh -- part of LilyPond
+  bar.hh -- part of GNU LilyPond
 
   (c) 1996,97 Han-Wen Nienhuys
 */
@@ -7,13 +7,21 @@
 #ifndef BAR_HH
 #define BAR_HH
 #include "item.hh"
-
-struct Bar: Item {
-    String type;
+/**
+  TODO: connections with pre and postbreak
+ */
+class Bar:public Item {
+public:
+    String type_str_;
+    int spanned_i_;
     
-    Bar(String type);
-NAME_MEMBERS(Bar);
+    NAME_MEMBERS();
+    SCORE_ELEM_CLONE(Bar);
+    Bar();
+private:
     void do_print() const;
+protected:
+    virtual void do_pre_processing();
     Molecule*brew_molecule_p()const;
 };
 #endif // BAR_HH