libqutim
0.3.2.0
Main Page
Related Pages
Namespaces
Classes
Globals
Globals
File List
metaobjectbuilder.h
Go to the documentation of this file.
1
/****************************************************************************
2
**
3
** qutIM - instant messenger
4
**
5
** Copyright © 2011 Ruslan Nigmatullin <euroelessar@yandex.ru>
6
**
7
*****************************************************************************
8
**
9
** $QUTIM_BEGIN_LICENSE$
10
** This program is free software: you can redistribute it and/or modify
11
** it under the terms of the GNU General Public License as published by
12
** the Free Software Foundation, either version 3 of the License, or
13
** (at your option) any later version.
14
**
15
** This program is distributed in the hope that it will be useful,
16
** but WITHOUT ANY WARRANTY; without even the implied warranty of
17
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18
** See the GNU General Public License for more details.
19
**
20
** You should have received a copy of the GNU General Public License
21
** along with this program. If not, see http://www.gnu.org/licenses/.
22
** $QUTIM_END_LICENSE$
23
**
24
****************************************************************************/
25
26
#ifndef METAOBJECTBUILDER_H
27
#define METAOBJECTBUILDER_H
28
29
#include "
libqutim_global.h
"
30
31
namespace
qutim_sdk_0_3
32
{
33
class
MetaObjectBuilderPrivate;
34
35
class
LIBQUTIM_EXPORT
MetaObjectBuilder
36
{
37
Q_DISABLE_COPY(
MetaObjectBuilder
)
38
Q_DECLARE_PRIVATE(
MetaObjectBuilder
)
39
public
:
40
MetaObjectBuilder
(
const
QByteArray &name,
const
QMetaObject *parent = 0);
41
~
MetaObjectBuilder
();
42
43
void
addClassInfo(
const
QByteArray &name,
const
QByteArray &value);
44
QMetaObject *
generate
();
45
46
static
const
char
*info(
const
QMetaObject *meta,
const
char
*name);
47
private
:
48
QScopedPointer<MetaObjectBuilderPrivate> d_ptr;
49
};
50
}
51
52
#endif // METAOBJECTBUILDER_H
53
Generated by Doxygen