/src/libtomahawk/infosystem/infoplugins/unix/imageconverter.h
C++ Header | 36 lines | 9 code | 5 blank | 22 comment | 0 complexity | 2b5cf9f6cb351d18806f16408e414c02 MD5 | raw file
1/* 2 Copyright (C) 2009 by Aurélien Gâteau <aurelien.gateau@canonical.com> 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 as published by 6 the Free Software Foundation; either version 2, or (at your option) 7 any later version. 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General Public License for more details. 13 14 You should have received a copy of the GNU General Public License 15 along with this program; if not, write to the Free Software 16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 17 18 */ 19#ifndef IMAGECONVERTER_H 20#define IMAGECONVERTER_H 21 22class QVariant; 23class QImage; 24 25namespace ImageConverter 26{ 27 28/** 29 * Returns a variant representing an image using the format describe in the 30 * galago spec 31 */ 32QVariant variantForImage(const QImage &image); 33 34} // namespace 35 36#endif /* IMAGECONVERTER_H */