]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/bar.hh
release: 1.3.13
[lilypond.git] / lily / include / bar.hh
index 3727358d96f3c2659e537a467dcfba1a65f0c23f..3c43bc0dcd92139465b020c96fc12e564a00b18c 100644 (file)
@@ -1,20 +1,29 @@
 /*
-  bar.hh -- part of LilyPond
+  bar.hh -- part of GNU LilyPond
 
-  (c) 1996,97 Han-Wen Nienhuys
+  (c) 1996--1999 Han-Wen Nienhuys
 */
 
 #ifndef BAR_HH
 #define BAR_HH
 #include "item.hh"
 
-struct Bar: Item {
-    String type;
-    
-    Bar(String type);
-NAME_MEMBERS(Bar);
-    void do_print() const;
-    Molecule*brew_molecule_p()const;
+/**
+  A vertical bar.
+ */
+class Bar:public Item {
+public:
+  String type_str_;
+  VIRTUAL_COPY_CONS(Score_element);
+  Bar ();
+
+protected:
+  virtual void do_pre_processing ();
+  virtual Molecule* do_brew_molecule_p () const;
+  virtual Real get_bar_size () const;
+
+private:
+  void do_print () const;
 };
 #endif // BAR_HH