summaryrefslogtreecommitdiffstats
path: root/kdbg/envvar.h
blob: c63c45b952cb60b43228f95876625d884dbd8d4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright Johannes Sixt
 * This file is licensed under the GNU General Public License Version 2.
 * See the file COPYING in the toplevel directory of the source directory.
 */

#ifndef ENVVAR_H
#define ENVVAR_H

/*
 * Description of environment variables. Note that the name of the variable
 * is given as the key in the TQDict, so we don't repeat it here.
 */

class TQListViewItem;

struct EnvVar {
    TQString value;
    enum EnvVarStatus { EVclean, EVdirty, EVnew, EVdeleted };
    EnvVarStatus status;
    TQListViewItem* item;
};

#endif // ENVVAR_H