diff options
Diffstat (limited to 'Swift/QtUI/MUCSearch/MUCSearchItem.h')
-rw-r--r-- | Swift/QtUI/MUCSearch/MUCSearchItem.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Swift/QtUI/MUCSearch/MUCSearchItem.h b/Swift/QtUI/MUCSearch/MUCSearchItem.h new file mode 100644 index 0000000..7bac25d --- /dev/null +++ b/Swift/QtUI/MUCSearch/MUCSearchItem.h @@ -0,0 +1,17 @@ +/* + * Copyright (c) 2010 Kevin Smith + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include <QVariant> + +namespace Swift { + class MUCSearchItem { + public: + virtual ~MUCSearchItem() {} + virtual QVariant data(int role) = 0; + }; +} |