]>
vaikene.ee Git - evaf/blob - src/plugins/Test/factory.h
2 * @file plugins/Test/factory.h
3 * @brief eVaf test plugin factory
6 * Copyright (c) 2011 Enar Vaikene
8 * This file is part of the eVaf C++ cross-platform application development framework.
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.
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
20 #ifndef __TEST_FACTORY_H
21 #define __TEST_FACTORY_H
23 #include <Plugins/iPluginFactory>
28 * Module for testing the eVaf application framework.
33 * Internal implementation of the test module.
37 } // namespace eVaf::Test::Internal
41 * Plugin factory class for the test plugin
43 class Factory
: public Plugins::iPluginFactory
46 Q_INTERFACES(eVaf::Plugins::iPluginFactory
)
54 virtual QObject
* create(QString
const & name
);
59 Internal::TestPlugin
* mTest
;
63 } // namespace eVaf::Test