]> git.mxchange.org Git - simgear.git/blob - simgear/misc/strutils.hxx
FG_ to SG_ namespace changes.
[simgear.git] / simgear / misc / strutils.hxx
1 // String utilities.
2 //
3 // Written by Bernie Bright, 1998
4 //
5 // Copyright (C) 1998  Bernie Bright - bbright@c031.aone.net.au
6 //
7 // This library is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU Library General Public
9 // License as published by the Free Software Foundation; either
10 // version 2 of the License, or (at your option) any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // Library General Public License for more details.
16 //
17 // You should have received a copy of the GNU Library General Public
18 // License along with this library; if not, write to the
19 // Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 // Boston, MA  02111-1307, USA.
21 //
22 // $Id$
23
24 #ifndef STRUTILS_H
25 #define STRUTILS_H
26
27 #include <simgear/compiler.h>
28
29 #include STL_STRING
30
31 #ifdef SG_HAVE_STD_INCLUDES
32 #  include <cstdlib>
33 #else
34 #  include <stdlib.h>
35 #endif
36
37 SG_USING_STD(string);
38
39 // Default characters to remove.
40 extern const string whitespace;
41
42 // Returns a string with trailing characters removed.
43 string trimleft( const string& s, const string& trimmings = whitespace );
44
45 // Returns a string with leading characters removed.
46 string trimright( const string& s, const string& trimmings = whitespace );
47
48 // Returns a string with leading and trailing characters removed.
49 string trim( const string& s, const string& trimmings = whitespace );
50
51 //-----------------------------------------------------------------------------
52
53 inline double
54 atof( const string& str )
55 {
56     return ::atof( str.c_str() );
57 }
58
59 inline int
60 atoi( const string& str )
61 {
62     return ::atoi( str.c_str() );
63 }
64
65 #endif // STRUTILS_H
66