transmission/qt/CustomVariantType.h

30 lines
463 B
C++

/*
* This file Copyright (C) 2012-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
* $Id$
*/
#ifndef QTR_TYPES_H
#define QTR_TYPES_H
#include <QVariant>
class CustomVariantType
{
public:
enum
{
TrackerStatsList = QVariant::UserType,
PeerList = QVariant::UserType,
FileList,
FilterModeType,
SortModeType
};
};
#endif // QTR_TYPES_H