]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/string.hh
release: 0.1.24
[lilypond.git] / flower / include / string.hh
index 3d8981faf0a99826441444d3f691fa6a2f778357..91342a1de368bfb288669783decfeacd93de41bf 100644 (file)
 
 #include "string-handle.hh"
 
+/**
+  technically incorrect, but lets keep it here: this is a
+  catch all place for this stuff.
+  */
+  
+#include "international.hh"
+
 /** 
  
   Intuitive string class. provides 
 class String
 {
 protected:
-    String_handle strh_; 
+  String_handle strh_; 
 
-    bool null_terminated();
+  bool null_terminated();
     
 public:
 
-    /** init to empty string. This is needed because other
-      constructors are provided.*/
-    String() {  }                  
-    String (Rational);
+  /** init to empty string. This is needed because other
+    constructors are provided.*/
+  String() {  }                  
+  String (Rational);
 
-    /// String s = "abc";
-    String (char const* source); 
-    String (Byte const* byte_C, int length_i); 
+  /// String s = "abc";
+  String (char const* source); 
+  String (Byte const* byte_C, int length_i); 
     
-    /// "ccccc"
-    String (char c, int n = 1);
-
-    String (int i , char const *fmt=0);
-    String ( double f , char const* fmt =0);
-    /// 'true' or 'false'
-    String (bool);
-
-    ///  return a "new"-ed copy of contents
-    Byte* copy_byte_p() const; //  return a "new"-ed copy of contents
-
-    char const* ch_C() const;
-    Byte const* byte_C() const;
-    char* ch_l();
-    Byte* byte_l();
-
-    /// deprecated; use ch_C()
-    operator char const*() const { return ch_C(); }
-    
-    String &operator =( String const & source);
-
-    /// concatenate s
-    void operator += (char const* s) { strh_ += s; }
-    void operator += (String s);
-
-    void append (String);
-    void prepend (String);
+  /// "ccccc"
+  String (char c, int n = 1);
+
+  String (int i , char const *fmt=0);
+  String (double f , char const* fmt =0);
+  /// 'true' or 'false'
+  String (bool);
+
+  ///  return a "new"-ed copy of contents
+  Byte* copy_byte_p() const; //  return a "new"-ed copy of contents
+
+  char const* ch_C() const;
+  Byte const* byte_C() const;
+  char* ch_l();
+  Byte* byte_l();
+
+  String &operator =(String const & source);
+
+  /// concatenate s
+  void operator += (char const* s) { strh_ += s; }
+  void operator += (String s);
+
+  bool empty_b () const;
+#if 0
+  /** is the string empty?
+
+    Ugh-ugh-thank-you-cygnus.  W32 barfs on this
+   */
+  operator bool () const;
+  {
+    return length_i (); 
+  }
+#endif
+  void append (String);
+  void prepend (String);
 
-    char operator []( int n) const { return strh_[n]; }
+  char operator [](int n) const { return strh_[n]; }
 
-    /// return n leftmost chars
-    String left_str (int n) const;
+  /// return n leftmost chars
+  String left_str (int n) const;
 
-    /// return n rightmost chars
-    String right_str (int n) const;
+  /// return n rightmost chars
+  String right_str (int n) const;
 
-    /// return uppercase of *this
-    String upper_str() const;
+  /// return uppercase of *this
+  String upper_str() const;
 
-    /// return lowercase of *this
-    String lower_str() const;
+  /// return lowercase of *this
+  String lower_str() const;
 
-    /// return the "esrever" of *this
-    String reversed_str() const;
+  /// return the "esrever" of *this
+  String reversed_str() const;
 
 
-    /// return a piece starting at index_i (first char = index_i 0), length n
-    String mid_str (int index_i, int n) const;
+  /// return a piece starting at index_i (first char = index_i 0), length n
+  String mid_str (int index_i, int n) const;
 
-    /// cut out a middle piece, return remainder
-    String nomid_str (int index_i, int n) const;
+  /// cut out a middle piece, return remainder
+  String nomid_str (int index_i, int n) const;
 
-    /// signed comparison,  analogous to memcmp;
-    static int compare_i (String const & s1,const  String& s2);
+  /// signed comparison,  analogous to memcmp;
+  static int compare_i (String const & s1,const  String& s2);
        
-    /// index of rightmost c 
-    int index_last_i (char c) const;
+  /// index of rightmost c 
+  int index_last_i (char c) const;
 
-    /// index of rightmost element of string 
-    int index_last_i (char const* string) const;
+  /// index of rightmost element of string 
+  int index_last_i (char const* string) const;
 
-    int index_i (char c) const;
-    int index_i (String) const;
-    int index_any_i (String) const;
+  int index_i (char c) const;
+  int index_i (String) const;
+  int index_any_i (String) const;
 
-    void to_upper();
-    void to_lower();
-    /// provide Stream output
-    void print_on (ostream& os) const;
+  void to_upper();
+  void to_lower();
+  /// provide Stream output
+  void print_on (ostream& os) const;
 
-    /// the length of the string
-    int length_i() const;
+  /// the length of the string
+  int length_i() const;
 
-    // ***** depreciated
-    int len() const {
-       return length_i();
-    }
+  // ***** depreciated
+  int len() const {
+    return length_i();
+  }
 
-    /// convert to an integer
-    int value_i() const;
+  /// convert to an integer
+  int value_i() const;
 
-    /// convert to a double
-    double value_f() const;
+  /// convert to a double
+  double value_f() const;
 };
 
 #include "compare.hh"
@@ -159,32 +174,32 @@ INSTANTIATE_COMPARE(String const &, String::compare_i);
 
 // because char const* also has an operator ==, this is for safety:
 inline bool operator==(String s1, char const* s2){
-    return s1 == String (s2);
+  return s1 == String (s2);
 }
 inline bool operator==(char const* s1, String s2)
 {
-    return String (s1)==s2;
+  return String (s1)==s2;
 }
 inline bool operator!=(String s1, char const* s2 ) {
-    return s1!=String (s2);
+  return s1!=String (s2);
 }
 inline bool operator!=(char const* s1,String s2) {
-    return String (s2) !=s1;
+  return String (s2) !=s1;
 }
 
 
 inline String
 operator  + (String s1, String  s2)
 {
-    s1 += s2;
-    return s1;
+  s1 += s2;
+  return s1;
 }
 
 inline ostream &
-operator << ( ostream& os, String d)
+operator << (ostream& os, String d)
 {
-    d.print_on (os);
-    return os;
+  d.print_on (os);
+  return os;
 }
 
 #endif