repo.or.cz
/
kdbg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Removed the check for KDE 3.
[kdbg.git]
/
kdbg
/
envvar.h
blob
40afe5c128fc04b98433753754f64bc771aeca63
1
// $Id$
2
3
#ifndef ENVVAR_H
4
#define ENVVAR_H
5
6
/*
7
* Description of environment variables. Note that the name of the variable
8
* is given as the key in the QDict, so we don't repeat it here.
9
*/
10
11
class
QListViewItem
;
12
13
struct
EnvVar
{
14
QString value
;
15
enum
EnvVarStatus
{
EVclean
,
EVdirty
,
EVnew
,
EVdeleted
};
16
EnvVarStatus status
;
17
QListViewItem
*
item
;
18
};
19
20
#endif
// ENVVAR_H