X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=blobdiff_plain;f=flower%2Finclude%2Flink.hh;h=5fce0ac91514f47b9acb0be789e3993065d8a5a4;hb=1a66290a98e7de8d6d41485b5b71a9f7e1fe35c7;hp=218a0f8e55b8a988709a98b279ece6bbc022e53a;hpb=6cea332dd176e75dd6c2ab2d92505cadfdfcd99f;p=lilypond.git diff --git a/flower/include/link.hh b/flower/include/link.hh index 218a0f8e55..5fce0ac915 100644 --- a/flower/include/link.hh +++ b/flower/include/link.hh @@ -12,21 +12,21 @@ class Link { // friend class Cursor; public: - Link( T const & thing ); + Link (T const & thing); Link* previous(); Link* 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 &l); + void insert (T const & thing); + void remove (List &l); T& thing(); void OK() const; private: - Link( Link* previous, Link* next, T const & thing ); + Link (Link* previous, Link* next, T const & thing); T thing_; Link* previous_;