~scottydelicious666/brewtarget/brewtarget

« back to all changes in this revision

Viewing changes to src/stringparsing.h

  • Committer: Philip Greggory Lee
  • Date: 2009-08-23 16:53:43 UTC
  • Revision ID: git-v1:f8d1a25135bd92f06c46c562293800e4faa42c61
Made a src/ and ui/ directory and moved everything.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * stringparsing.h is part of Brewtarget, and is Copyright Philip G. Lee
 
3
 * (rocketman768@gmail.com), 2009.
 
4
 *
 
5
 * Brewtarget is free software: you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation, either version 3 of the License, or
 
8
 * (at your option) any later version.
 
9
 
 
10
 * Brewtarget is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
#ifndef _STRINGPARSING_H
 
20
#define _STRINGPARSING_H
 
21
 
 
22
#include <string>
 
23
#include <exception>
 
24
#include <stdlib.h>
 
25
 
 
26
class ParseException;
 
27
 
 
28
int parseInt( const std::string &str );
 
29
long parseLong( const std::string &str );
 
30
double parseDouble( const std::string &str );
 
31
bool parseBool( const std::string &str );
 
32
std::string doubleToString( double num );
 
33
std::string doubleToStringPrec( double num, unsigned int prec );
 
34
std::string intToString( int num );
 
35
std::string boolToString( bool b );
 
36
 
 
37
std::string& trim( std::string &str );
 
38
void iterateUntilDelimiter( std::string::const_iterator &iter );
 
39
void iterateUntilNotDelimiter( std::string::const_iterator &iter );
 
40
void iterateUntilCharFound( std::string::const_iterator &iter, char c );
 
41
bool isWhiteSpace( char c );
 
42
 
 
43
//==========================ParseException======================================
 
44
class ParseException : std::exception
 
45
{
 
46
public:
 
47
   
 
48
   virtual const char* what() const throw()
 
49
   {
 
50
      return std::string("Error in parsing: " + _err + "\n").c_str();
 
51
   }
 
52
   
 
53
   ParseException(){};
 
54
   ParseException( std::string error )
 
55
   {
 
56
      _err = error;
 
57
   }
 
58
 
 
59
   ~ParseException() throw() {}
 
60
private:
 
61
   std::string _err;
 
62
};
 
63
 
 
64
#endif  /* _STRINGPARSING_H */
 
65