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
37
38
39
40
41
42
43
44
45
|
/*
* This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
* http://www.gnu.org/licenses/lgpl-3.0.html
*/
#ifndef ID_H
#define ID_H
#undef new
#include <wx/string.h>
/*
* Base class for providing a string ID
*/
class ID
{
wxString p__id;
public:
ID(){};
ID(const wxString& id) : p__id(id){};
explicit ID(const ID& cpy) : p__id(cpy.id()){};
wxString id() const
{
return p__id;
};
void set_id(const wxString& s)
{
p__id.assign(s);
};
bool operator==(const ID& other) const
{
return id().IsSameAs(other.id());
};
bool operator==(const wxString& other) const
{
return id().IsSameAs(other);
};
};
#endif
|