]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/string-handle.hh
release: 1.0.1
[lilypond.git] / flower / include / string-handle.hh
index 3f42e860e66ee5e20f8b82fb1c14f3480850c857..3e39e6afbeab86347e5dcf50ed2baaec95508388 100644 (file)
@@ -3,7 +3,7 @@
 
   source file of the LilyPond music typesetter
 
-  (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+  (c)  1997--1998 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 
@@ -26,7 +26,7 @@ class String_handle {
     void down();
 
     /// increase ref count
-    void up(String_data *d);
+    void up (String_data *d);
     
     /** make sure data has only one reference.      
        POST: data->references == 1
@@ -36,13 +36,13 @@ class String_handle {
 public:
     String_handle();
     ~String_handle();
-    String_handle(String_handle const & src);
+    String_handle (String_handle const & src);
 
     Byte const* byte_C() const;
     char const* ch_C() const;
     Byte* byte_l();
     char* ch_l();    
-    bool is_binary_bo()const;
+    bool is_binary_bo() const;
     void operator =(String_handle const &src);
     void operator += (char const *s);
     Byte operator[](int j) const;
@@ -51,10 +51,10 @@ public:
        don't use this for loops. Use byte_C()
        */
     Byte &operator[](int j);
-    void append( Byte const* byte_C, int length_i );
-    void set( Byte const* byte_C, int length_i );
+    void append (Byte const* byte_C, int length_i);
+    void set (Byte const* byte_C, int length_i);
     void operator = (char const *p);
-    void trunc(int j);
+    void trunc (int j);
     int length_i() const;
 };
 
@@ -62,7 +62,7 @@ public:
 #ifndef INLINE
 #define INLINE inline
 #endif
-#include "string-handle.inl"
+#include "string-handle.icc"
 /* we should be resetting INLINE. oh well. */
 #endif