30 lines
452 B
C++
30 lines
452 B
C++
/*
|
|
* This file Copyright (C) 2012-2014 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU Public License v2 or v3 licenses,
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef QTR_TYPES_H
|
|
#define QTR_TYPES_H
|
|
|
|
#include <QVariant>
|
|
|
|
class TrTypes
|
|
{
|
|
public:
|
|
|
|
enum
|
|
{
|
|
TrackerStatsList = QVariant::UserType,
|
|
PeerList = QVariant::UserType,
|
|
FileList,
|
|
FilterModeType,
|
|
SortModeType
|
|
};
|
|
};
|
|
|
|
#endif
|