]> git.mxchange.org Git - simgear.git/blob - Misc/strutils.hxx
Temporary destructor patch until Steve can release next version of PUI.
[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
30 // Default characters to remove.
31 const string whitespace = " \n\r\t";
32
33 // Returns a string with trailing characters removed.
34 string trimleft( const string& s, const string& trimmings = whitespace );
35
36 // Returns a string with leading characters removed.
37 string trimright( const string& s, const string& trimmings = whitespace );
38
39 // Returns a string with leading and trailing characters removed.
40 string trim( const string& s, const string& trimmings = whitespace );
41
42 //-----------------------------------------------------------------------------
43
44 inline double
45 atof( const string& str )
46 {
47     return ::atof( str.c_str() );
48 }
49
50 inline int
51 atoi( const string& str )
52 {
53     return ::atoi( str.c_str() );
54 }
55
56 #endif // STRUTILS_H
57
58 // $Log$
59 // Revision 1.1  1998/09/01 19:06:31  curt
60 // Initial revision.
61 //