]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/std-string.hh
Run grand-replace (issue 3765)
[lilypond.git] / flower / include / std-string.hh
index 129cf4dfc7747eb1b7d445619a92858bcabd74f0..cc0de9fae8254585e5f74f3862f32956d12b8953 100644 (file)
@@ -1,53 +1,62 @@
 /*
-  std-string.hh -- declare Std_string
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 2006--2014 Jan Nieuwenhuizen <janneke@gnu.org>
 
-  (c) 2006 Jan Nieuwenhuizen <janneke@gnu.org>
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef STD_STRING_HH
 #define STD_STRING_HH
 
-#if !STD_STRING
-
-#define Std_string
-#define to_std_string to_string
-#include "string.hh"
+#include "compare.hh"
+#include "flower-proto.hh"
 
-#else
+#if 0
+/*
+  leads to dubious crashes - libstdc++  bug?
+ */
+#ifndef NDEBUG
+#define _GLIBCXX_DEBUG 1
+#endif
+#endif
 
 #include <string>
-// #warning Using std::string
 
-namespace std {
+using namespace std;
 
-#if 0
-  class Std_string : public string
-  {
-  public:
-    Std_string ();
-    Std_string (char const*);
-    Std_string (Std_string const&, int pos, int n=npos);
-    ///Std_string (String const&, int pos, int n);
-    ////Std_string (String const &);
-    ////operator String ();
-  };
-#else  
-  typedef string Std_string;
-#endif
+typedef size_t ssize;
+#define NPOS string::npos
+
+string to_string (const string&);
+string to_string (char c, int n = 1);
+string to_string (int i, char const *format = 0);
+string to_string (double f, char const *format = 0);
+string to_string (long);
+string to_string (long unsigned);
+string to_string (I64, char const *format = 0);
+string to_string (unsigned);
+string to_string (bool b);
+string to_string (char const *format, ...)
+__attribute__ ((format (printf, 1, 2)));
 
-  //operator Std_string (String const&);
+string &replace_all (string *str, string const &find, string const &replace);
+string &replace_all (string *str, char find, char replace);
+char *string_copy (const string &s);
 
-  Std_string to_std_string (Std_string s);
-  Std_string to_std_string (char c, int n = 1);
-  Std_string to_std_string (int i, char const *format = 0);
-  Std_string to_std_string (double f, char const *format = 0);
-  Std_string to_std_string (long b);
-  Std_string to_std_string (bool b);
-  Std_string to_std_string (char const *format, ...);
-}
+int string_compare (string const &, string const &);
 
-#endif /* STD_STRING */
+INSTANTIATE_COMPARE (string const &, string_compare);
 
 #endif /* STD_STRING_HH */