Fixed that Run/Continue button was enabled while the program is running.
[kdbg.git] / kdbg / envvar.h
blob40afe5c128fc04b98433753754f64bc771aeca63
1 // $Id$
3 #ifndef ENVVAR_H
4 #define ENVVAR_H
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 */
11 class QListViewItem;
13 struct EnvVar {
14 QString value;
15 enum EnvVarStatus { EVclean, EVdirty, EVnew, EVdeleted };
16 EnvVarStatus status;
17 QListViewItem* item;
20 #endif // ENVVAR_H