~ubuntu-branches/ubuntu/precise/pingus/precise

« back to all changes in this revision

Viewing changes to src/string_converter.hxx

  • Committer: Bazaar Package Importer
  • Author(s): Raphael Goulais
  • Date: 2004-08-09 10:26:00 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040809102600-lg2q9lfars0q1p42
Tags: 0.6.0-8
Applied patch from Andreas Jochens (Closes: #263992)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  $Id: string_converter.hxx,v 1.11 2002/12/29 23:29:00 torangan Exp $
 
2
// 
 
3
//  Pingus - A free Lemmings clone
 
4
//  Copyright (C) 2000 Ingo Ruhnke <grumbel@gmx.de>
 
5
//
 
6
//  This program is free software; you can redistribute it and/or
 
7
//  modify it under the terms of the GNU General Public License
 
8
//  as published by the Free Software Foundation; either version 2
 
9
//  of the License, or (at your option) any later version.
 
10
//
 
11
//  This program is distributed in the hope that it will be useful,
 
12
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
//  GNU General Public License for more details.
 
15
// 
 
16
//  You should have received a copy of the GNU General Public License
 
17
//  along with this program; if not, write to the Free Software
 
18
//  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
19
 
 
20
#ifndef HEADER_PINGUS_STRING_CONVERTER_HXX
 
21
#define HEADER_PINGUS_STRING_CONVERTER_HXX
 
22
 
 
23
#include "pingus.hxx"
 
24
#include <string>
 
25
 
 
26
#ifdef HAVE_CONFIG_H
 
27
#include <config.h>
 
28
#endif
 
29
 
 
30
#ifdef HAVE_SSTREAM
 
31
#include <sstream>
 
32
#else
 
33
#include <strstream>
 
34
#endif
 
35
 
 
36
template <class T>
 
37
std::string to_string (const T& any)
 
38
{
 
39
#ifdef HAVE_SSTREAM
 
40
  std::ostringstream oss;
 
41
  oss << any ;
 
42
#else
 
43
  std::ostrstream oss;
 
44
  oss << any << std::ends;
 
45
#endif
 
46
  return oss.str();
 
47
}
 
48
 
 
49
/** Convert the contents in string \a rep to type \a T, if conversion
 
50
    fails false is returned and the value of \a x is unchanged, if
 
51
    true is returned the conversation was successfull. */
 
52
template <class T>
 
53
bool from_string(const std::string& rep, T& x)
 
54
{
 
55
 // this is necessary so that if "x" is not modified if the conversion fails
 
56
  T temp;
 
57
#ifdef HAVE_SSTREAM
 
58
  std::istringstream iss(rep);
 
59
#else
 
60
  std::istrstream iss(rep.c_str());
 
61
#endif
 
62
  iss >> temp;
 
63
 
 
64
  /*if (iss.fail())
 
65
    throw std::invalid_argument
 
66
    ("Exception: 'failed to extract type T from rep' " __FILE__ ": " + rep);*/
 
67
 
 
68
  if (iss.fail())
 
69
    {
 
70
      return false;
 
71
    }
 
72
  else
 
73
    {
 
74
      x = temp;
 
75
      return true;
 
76
    }
 
77
}
 
78
 
 
79
std::string string_upcase (const std::string&);
 
80
std::string string_downcase (const std::string&);
 
81
 
 
82
#endif
 
83
 
 
84
/* EOF */