Update the admin/ directory.
[kdbg.git] / kdbg / envvar.h
blob20339b25d5ea1c0e88b0205768e61d954eae5b8a
1 /*
2 * Copyright Johannes Sixt
3 * This file is licensed under the GNU General Public License Version 2.
4 * See the file COPYING in the toplevel directory of the source directory.
5 */
7 #ifndef ENVVAR_H
8 #define ENVVAR_H
11 * Description of environment variables. Note that the name of the variable
12 * is given as the key in the QDict, so we don't repeat it here.
15 class QListViewItem;
17 struct EnvVar {
18 QString value;
19 enum EnvVarStatus { EVclean, EVdirty, EVnew, EVdeleted };
20 EnvVarStatus status;
21 QListViewItem* item;
24 #endif // ENVVAR_H