source: pacpusframework/trunk/include/Pacpus/kernel/PacpusPluginInterface.h@ 45

Last change on this file since 45 was 31, checked in by sgosseli, 12 years ago

Huge commit: use the new includes style in all the files, add the license header in all the headers, and in some cpp.

File size: 711 bytes
Line 
1/**
2 *
3 * Distributed under the UTC Heudiascy Pacpus License, Version 1.0.
4 * Copyright (c) UTC Heudiasyc 2010 - 2013. All rights reserved.
5 *
6 * See the LICENSE file for more information or a copy at:
7 * http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt
8 *
9 */
10
11#ifndef DEF_PACPUS_PLUGININTERFACE_H
12#define DEF_PACPUS_PLUGININTERFACE_H
13
14/** PacpusPluginInterface
15 * @brief Base class of a Pacpus plugin.
16 */
17class PacpusPluginInterface
18{
19public:
20 /** Dtor of PacpusPluginInterface. */
21 virtual ~PacpusPluginInterface(){}
22
23 /** Name of the plugin. */
24 virtual QString name() = 0;
25};
26
27Q_DECLARE_INTERFACE(PacpusPluginInterface, "pacpus.ComponentBaseInterface/1.0")
28
29#endif // DEF_PACPUS_PLUGININTERFACE_H
Note: See TracBrowser for help on using the repository browser.