Extend copyright to 2016.
[kdbg.git] / kdbg / envvar.h
blob020c1a6ff7b91ed60c12004fb4f043b9efcef81a
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 map, so we don't repeat it here.
15 class QTreeWidgetItem;
17 struct EnvVar {
18 QString value;
19 enum EnvVarStatus { EVclean, EVdirty, EVnew, EVdeleted };
20 EnvVarStatus status;
21 QTreeWidgetItem* item;
24 #endif // ENVVAR_H