Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_meta_data_parser.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2009 Cyrille Berger <cberger@cberger.net>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5 */
6
7#ifndef _KIS_META_DATA_PARSER_H_
8#define _KIS_META_DATA_PARSER_H_
9
10#include <kritametadata_export.h>
11
12#include <QString>
13
14namespace KisMetaData
15{
16class TypeInfo;
17class Value;
21class KRITAMETADATA_EXPORT Parser
22{
23 friend class TypeInfo;
24public:
25 virtual ~Parser();
26 virtual Value parse(const QString&) const = 0;
27};
28}
29
30#endif
virtual Value parse(const QString &) const =0