Code::Blocks
SVN r11506
Main Page
Related Pages
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
w
x
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Typedefs
Enumerations
+
Enumerator
b
c
d
e
f
k
n
p
r
s
u
v
w
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Typedefs
a
b
c
d
e
f
i
l
m
p
r
s
t
w
+
Enumerations
b
c
d
e
f
l
o
p
q
r
s
t
+
Enumerator
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
y
+
Related Functions
b
c
d
e
f
l
m
n
p
s
t
u
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Variables
_
b
c
d
e
f
g
h
i
k
m
n
r
s
t
u
w
+
Typedefs
b
c
e
f
h
n
o
p
r
s
t
v
w
+
Enumerations
a
b
c
d
e
f
l
m
o
p
s
t
w
+
Enumerator
a
b
c
d
e
f
h
l
m
o
p
s
t
u
w
+
Macros
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
w
include
uservarmanager.h
Go to the documentation of this file.
1
/*
2
* This file is part of the Code::Blocks IDE and licensed under the GNU Lesser General Public License, version 3
3
* http://www.gnu.org/licenses/lgpl-3.0.html
4
*/
5
6
#ifndef USER_VARIABLE_MANAGER_H
7
#define USER_VARIABLE_MANAGER_H
8
9
#include "
settings.h
"
10
#include "
manager.h
"
11
#include "
cbexception.h
"
12
13
#ifndef CB_PRECOMP
14
#include "
globals.h
"
15
#endif
16
17
class
DLLIMPORT
UserVariableManager
:
public
Mgr
<UserVariableManager>
18
{
19
friend
class
Manager
;
20
friend
class
Mgr
<
UserVariableManager
>;
21
friend
class
MacrosManager
;
22
23
ConfigManager
*
m_CfgMan
;
24
wxString
m_ActiveSet
;
25
wxArrayString
m_Preempted
;
26
27
public
:
28
UserVariableManager
();
29
30
wxString
Replace(
const
wxString
& variable);
31
32
wxString
GetVariable(
wxWindow
*parent,
const
wxString
&old);
33
34
void
Preempt(
const
wxString
& variable);
35
void
Arrogate();
36
bool
Exists(
const
wxString
& variable)
const
;
37
38
void
Configure();
39
void
Migrate();
40
41
UserVariableManager
&
operator=
(cb_unused
const
UserVariableManager
& rhs)
// prevent assignment operator
42
{
43
cbThrow
(
_T
(
"Can't assign a UserVariableManager* !!!"
));
44
return
*
this
;
45
}
46
private
:
47
UserVariableManager
(cb_unused
const
UserVariableManager
& rhs);
// prevent copy construction
48
};
49
50
#endif // USER_VARIABLE_MANAGER_H
UserVariableManager::m_Preempted
wxArrayString m_Preempted
Definition:
uservarmanager.h:25
UserVariableManager::m_CfgMan
ConfigManager * m_CfgMan
Definition:
uservarmanager.h:23
manager.h
Manager
Definition:
manager.h:48
MacrosManager
Definition:
macrosmanager.h:23
_T
#define _T(string)
UserVariableManager::m_ActiveSet
wxString m_ActiveSet
Definition:
uservarmanager.h:24
DLLIMPORT
#define DLLIMPORT
Definition:
settings.h:16
settings.h
wxString
cbexception.h
Mgr
Definition:
manager.h:183
ConfigManager
Definition:
configmanager.h:94
cbThrow
#define cbThrow(message)
Definition:
cbexception.h:42
UserVariableManager::operator=
UserVariableManager & operator=(cb_unused const UserVariableManager &rhs)
Definition:
uservarmanager.h:41
UserVariableManager
Definition:
uservarmanager.h:17
wxArrayString
wxWindow
globals.h
Generated by
1.8.13