]> vaikene.ee Git - evaf/blob - src/plugins/LogView/factory.h
cec48acf5b29b3c24a764213ca76aa005c675f45
[evaf] / src / plugins / LogView / factory.h
1 /**
2 * @file LogView/factory.h
3 * @brief LogView module's factory class
4 * @author Enar Vaikene
5 *
6 * Copyright (c) 2011 Enar Vaikene
7 *
8 * This file is part of the eVaf C++ cross-platform application development framework.
9 *
10 * This file can be used under the terms of the GNU General Public License
11 * version 3.0 as published by the Free Software Foundation and appearing in
12 * the file LICENSE included in the packaging of this file. Please review the
13 * the following information to ensure the GNU General Public License version
14 * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
15 *
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
18 */
19
20 #ifndef __LOGVIEW_FACTORY_H
21 # define __LOGVIEW_FACTORY_H
22
23 #include <Plugins/iPluginFactory>
24
25 namespace eVaf {
26 namespace LogView {
27 namespace Internal {
28 class Module;
29 } // namespace eVaf::LogView::Internal
30
31
32 /**
33 * Plugin factory class for the module
34 */
35 class Factory : public Plugins::iPluginFactory
36 {
37 Q_OBJECT
38
39 public:
40
41 Factory();
42
43 virtual ~Factory();
44
45 virtual QObject * create(QString const & name);
46
47
48 private: // Members
49
50 Internal::Module * mPlugin;
51
52 };
53
54 } // namespace eVaf::LogView
55 } // namespace eVaf
56
57 #endif // factory.h