1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-30 11:36:07 +00:00
transmission/qt/CustomVariantType.h
2015-06-12 22:12:12 +00:00

28 lines
462 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