1/*
2 * This file Copyright (C) Mnemosyne LLC
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2
6 * as published by the Free Software Foundation.
7 *
8 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
9 *
10 * $Id: types.h 11092 2010-08-01 20:36:13Z charles $
11 */
12
13#ifndef QTR_TYPES_H
14#define QTR_TYPES_H
15
16#include <QVariant>
17
18class TrTypes
19{
20    public:
21
22        enum
23        {
24            TrackerStatsList = QVariant::UserType,
25            PeerList = QVariant::UserType,
26            FileList,
27            FilterModeType,
28            SortModeType
29        };
30};
31
32#endif
33