X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Finclude%2Fstring-handle.hh;h=25caad3fd1b5d9807f5e05c92edac217ba9883a7;hb=a54fef48345564ae701839c525379939c840638d;hp=08b957c51f9aae49bec85087077f51e463027849;hpb=69b9cead5afe7164b9053d26eba582fec3825ef8;p=lilypond.git diff --git a/flower/include/string-handle.hh b/flower/include/string-handle.hh index 08b957c51f..25caad3fd1 100644 --- a/flower/include/string-handle.hh +++ b/flower/include/string-handle.hh @@ -3,13 +3,14 @@ source file of the LilyPond music typesetter - (c) 1997--1998 Han-Wen Nienhuys + (c) 1997--2004 Han-Wen Nienhuys */ #ifndef STRINGHANDLE_HH #define STRINGHANDLE_HH -#include "fproto.hh" + +#include "flower-proto.hh" /** @@ -20,42 +21,41 @@ */ class String_handle { - String_data* data; + String_data* data; - /// decrease ref count. Named kind of like a Tanenbaum semafore - void down(); + /// decrease ref count. Named kind of like a Tanenbaum semafore + 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 - */ - void copy(); + /** make sure data has only one reference. + POST: data->ref_count_ == 1 + */ + void copy (); public: - String_handle(); - ~String_handle(); - String_handle (String_handle const & src); + String_handle (); + ~String_handle (); + 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; - void operator =(String_handle const &src); - void operator += (char const *s); - Byte operator[](int j) const; + Byte const* to_bytes () const; + char const* to_str0 () const; + Byte* get_bytes (); + char* get_str0 (); + bool is_binary_bo () const; + void operator = (String_handle const &src); + void operator += (char const *s); + Byte operator[] (int j) const; - /** Access elements. WARNING: NOT SAFE - 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 operator = (char const *p); - void trunc (int j); - int length_i() const; + /** Access elements. WARNING: NOT SAFE + don't use this for loops. Use to_bytes () + */ + Byte &operator[] (int j); + void append (Byte const* byte, int length_i); + void set (Byte const* byte, int length_i); + void operator = (char const *p); + void trunc (int j); + int length () const; }; #ifdef STRING_UTILS_INLINED