Convert from Qt 3 to Qt 4 using qt3to4.
[kdbg.git] / kdbg / envvar.h
blobda8337c6e33eb34384eabb12e3d4ac714af92978
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 Q3ListViewItem;
17 struct EnvVar {
18 QString value;
19 enum EnvVarStatus { EVclean, EVdirty, EVnew, EVdeleted };
20 EnvVarStatus status;
21 Q3ListViewItem* item;
24 #endif // ENVVAR_H