]> git.mxchange.org Git - simgear.git/blob - Misc/strutils.hxx
Added an FG_SERIAL type to the FG_LOG macro.
[simgear.git] / 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 program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22 // (Log is kept at end of this file)
23
24 #ifndef STRUTILS_H
25 #define STRUTILS_H
26
27 #include <string>
28 // #include <cstdlib>
29 #include <stdlib.h>
30
31 #include "Include/fg_stl_config.h"
32 FG_USING_NAMESPACE(std);
33
34 // Default characters to remove.
35 extern const string whitespace;
36
37 // Returns a string with trailing characters removed.
38 string trimleft( const string& s, const string& trimmings = whitespace );
39
40 // Returns a string with leading characters removed.
41 string trimright( const string& s, const string& trimmings = whitespace );
42
43 // Returns a string with leading and trailing characters removed.
44 string trim( const string& s, const string& trimmings = whitespace );
45
46 //-----------------------------------------------------------------------------
47
48 inline double
49 atof( const string& str )
50 {
51     return ::atof( str.c_str() );
52 }
53
54 inline int
55 atoi( const string& str )
56 {
57     return ::atoi( str.c_str() );
58 }
59
60 #endif // STRUTILS_H
61
62 // $Log$
63 // Revision 1.3  1998/10/16 00:50:57  curt
64 // Remove leading _ from a couple defines.
65 //
66 // Revision 1.2  1998/10/13 00:10:07  curt
67 // More portability changes to help with windoze compilation problems.
68 //
69 // Revision 1.1  1998/09/01 19:06:31  curt
70 // Initial revision.
71 //