1/*
2 * <one line to give the library's name and an idea of what it does.>
3 * Copyright (C) 2014 Vishesh Handa <me@vhanda.in>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 */
20
21#ifndef KFILEMETADATA_TYPEINFO_H
22#define KFILEMETADATA_TYPEINFO_H
23
24#include "types.h"
25#include "kfilemetadata_export.h"
26#include <QString>
27
28namespace KFileMetaData {
29
30class KFILEMETADATA_EXPORT TypeInfo
31{
32public:
33 TypeInfo(Type::Type type);
34 TypeInfo(const TypeInfo& ti);
35 ~TypeInfo();
36
37 /**
38 * The type identifier
39 */
40 Type::Type type() const;
41
42 /**
43 * An internal name for the type
44 */
45 QString name() const;
46
47 /**
48 * A user visible translated name for this type
49 */
50 QString displayName() const;
51
52private:
53 class Private;
54 Private* d;
55};
56}
57
58#endif // KFILEMETADATA_TYPEINFO_H
59