]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/link.hh
release: 0.1.8
[lilypond.git] / flower / include / link.hh
index 218a0f8e55b8a988709a98b279ece6bbc022e53a..5fce0ac91514f47b9acb0be789e3993065d8a5a4 100644 (file)
@@ -12,21 +12,21 @@ class Link
 {
 //    friend class Cursor<T>;
 public:    
-    Link( T const & thing );
+    Link (T const & thing);
     
     Link<T>* previous();
     Link<T>* next();
 
     /// put new Link item after me in list
-    void add( T const & thing );
+    void add (T const & thing);
     /// put new Link item before me in list
-    void insert( T const & thing );    
-    void remove(List<T> &l);
+    void insert (T const & thing);     
+    void remove (List<T> &l);
     
     T& thing();
     void OK() const;
 private:    
-    Link( Link<T>* previous, Link<T>* next, T const & thing );
+    Link (Link<T>* previous, Link<T>* next, T const & thing);
 
     T thing_;
     Link<T>* previous_;