Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/util/String2Number.h @ 1056

Last change on this file since 1056 was 1056, checked in by landauf, 16 years ago

don't panic, no codechanges!
added a link to www.orxonox.net

File size: 2.2 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Nicolas Perrenoud <nicolape_at_ee.ethz.ch>
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#ifndef _String2Number_H__
30#define _String2Number_H__
31
32#include <string>
33#include <sstream>
34#include <iostream>
35
36#include "core/Debug.h"
37#include "UtilPrereqs.h"
38
39/**
40 * String to number conversion
41 *
42 * This class converts a number inside a std::string
43 * into a numeric type number (int,float,double)
44 * Number in string can be decimal, hexadecimal or octal
45 *
46 * @author Nicolas Perrenoud<nicolape_at_ee.ethz.ch>
47 *
48 * @example
49 * float f;
50 * String2Number<float>(f, std::string(" 123.45 "));
51 */
52
53template <class T>
54class String2Number
55{
56  private:
57  bool success_;
58
59  public:
60  /**
61   * Constructor
62   *
63   * First value is the target variable, the second vector is the
64   * string where the number is taken from, the third parameter
65   * should be one of std::hex, std::dec or std::oct (dec is default value)
66   */
67  inline String2Number(T& t, const std::string& s, std::ios_base& (*f)(std::ios_base&) =  std::dec, int haltOnError=1)
68  {
69    std::istringstream iss(s);
70    success_ = !(iss >> f >> t).fail();
71
72    if (!success_ && haltOnError==1)
73    {
74      COUT(1) << "Error: Conversion from string to number in \"" << s << "\" failed." << std::endl;
75      exit(1);
76    }
77  }
78};
79
80#endif /* _String2Number_H__ */
Note: See TracBrowser for help on using the repository browser.