~ubuntu-branches/ubuntu/wily/aldo/wily

« back to all changes in this revision

Viewing changes to src/option.cc

  • Committer: Bazaar Package Importer
  • Author(s): Giuseppe Martino (denever)
  • Date: 2006-04-19 11:53:19 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060419115319-bjhy63yl1tm1jwqh
Tags: 0.7.1-1
* New upstream release Closes: #361926
* Removed TODO in debian/docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                             libdatafile
 
3
                          --------------------
 
4
    begin                : Sun May 6 2001
 
5
    copyright             : Giuseppe "denever" Martino
 
6
    email                : denever@users.sourceforge.net
 
7
 ***************************************************************************/
 
8
/***************************************************************************
 
9
 *                                                                         *
 
10
 *   This program is free software; you can redistribute it and/or modify  *
 
11
 *   it under the terms of the GNU General Public License as published by  *
 
12
 *   the Free Software Foundation; either version 2 of the License, or     *
 
13
 *   (at your option) any later version.                                   *
 
14
 *                                                                         *
 
15
 *  This program is distributed in the hope that it will be useful,        *
 
16
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
 
17
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
 
18
 *  GNU General Public License for more details.                           *
 
19
 *                                                                         *
 
20
 *  You should have received a copy of the GNU General Public License      *
 
21
 *  along with this program; if not, write to the Free Software            *
 
22
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,             *
 
23
 *  MA 02110-1301 USA                                                      *
 
24
 *                                                                         *
 
25
 ***************************************************************************/
 
26
 
 
27
#include "option.hh"
 
28
 
 
29
using namespace std;
 
30
using namespace libdatafile;
 
31
 
 
32
Option::Option(const string& name): m_name(name), m_value(9999)
 
33
{}
 
34
 
 
35
Option::Option(const Option& cpy): m_name(cpy.m_name),  m_value(cpy.m_value)
 
36
{}
 
37
 
 
38
void Option::set(unsigned int vl)
 
39
{
 
40
    if(m_valuestr.empty())
 
41
        m_value = vl;
 
42
}
 
43
 
 
44
void Option::set(const std::string& vl)
 
45
{
 
46
    m_value = 9999;
 
47
    m_valuestr = vl;
 
48
}
 
49
 
 
50
unsigned int Option::get() const
 
51
{
 
52
    return m_value;
 
53
}
 
54
 
 
55
string Option::getstr() const
 
56
{
 
57
    return m_valuestr;
 
58
}
 
59
 
 
60
string Option::name() const
 
61
{
 
62
    return m_name;
 
63
}