summaryrefslogtreecommitdiff
path: root/library/globalFunctions.h
blob: 5fe576e107053c0f5ab75efa05198418185c8a7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef GLOBALFUNCTIONS_H_INCLUDED
#define GLOBALFUNCTIONS_H_INCLUDED

#include <string>
#include <algorithm>
#include <wx/string.h>
#include <stdexcept> //for std::runtime_error

using namespace std;

namespace globalFunctions
{
    int round(double d); //little rounding function

    int          abs(const int d);          //absolute value
    unsigned int abs(const unsigned int d); //absolute value
    float        abs(const float d);        //absolute value
    double       abs(const double d);       //absolute value

    string numberToString(const unsigned int number); //Convert number to string
    string numberToString(const int number);          //Convert number to string
    string numberToString(const float number);        //Convert number to string

    wxString numberToWxString(const unsigned int number); //Convert number to wxString
    wxString numberToWxString(const int number);          //Convert number to wxString
    wxString numberToWxString(const float number);        //Convert number to wxString

    int    stringToInt(   const string& number); //Convert String to number
    double stringToDouble(const string& number); //Convert String to number

    int    wxStringToInt(   const wxString& number); //Convert wxString to number
    double wxStringToDouble(const wxString& number); //Convert wxString to number

    wxString& includeNumberSeparator(wxString& number);
}
#endif // GLOBALFUNCTIONS_H_INCLUDED
bgstack15