]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/bar.hh
release: 1.1.35
[lilypond.git] / lily / include / bar.hh
index 733cd26237feb443701e62e4c9068dae7b04ad25..08e48d2f6e31a48340d4bc767bbdeb08fa931868 100644 (file)
@@ -1,24 +1,31 @@
 /*
-  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"
+
 /**
-  TODO: connections with pre and postbreak
+  A vertical bar.
  */
 class Bar:public Item {
 public:
-    String type;
-    
-    NAME_MEMBERS(Bar);
-    Bar(String type);
+  String type_str_;
+  bool at_line_start_b_;
+
+  
+  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;
-    Molecule*brew_molecule_p()const;
+  void do_print () const;
 };
 #endif // BAR_HH