Line | |
---|
1 | // This file is part of the PACPUS framework distributed under the
|
---|
2 | // CECILL-C License, Version 1.0.
|
---|
3 | //
|
---|
4 | /// @file
|
---|
5 | /// @author Firstname Surname <firstname.surname@utc.fr>
|
---|
6 | /// @date Month, Year
|
---|
7 | /// @version $Id: PacpusPluginInterface.h 67 2013-01-09 18:17:44Z kurdejma $
|
---|
8 | /// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
|
---|
9 | /// @brief Brief description.
|
---|
10 | ///
|
---|
11 | /// Detailed description.
|
---|
12 |
|
---|
13 | #ifndef DEF_PACPUS_PLUGININTERFACE_H
|
---|
14 | #define DEF_PACPUS_PLUGININTERFACE_H
|
---|
15 |
|
---|
16 | #include <QObject>
|
---|
17 |
|
---|
18 | /** PacpusPluginInterface
|
---|
19 | * @brief Base class of a Pacpus plugin.
|
---|
20 | */
|
---|
21 | class PacpusPluginInterface
|
---|
22 | {
|
---|
23 | public:
|
---|
24 | /** Dtor of PacpusPluginInterface. */
|
---|
25 | virtual ~PacpusPluginInterface(){}
|
---|
26 |
|
---|
27 | /** Name of the plugin. */
|
---|
28 | virtual QString name() = 0;
|
---|
29 | };
|
---|
30 |
|
---|
31 | Q_DECLARE_INTERFACE(PacpusPluginInterface, "pacpus.ComponentBaseInterface/1.0")
|
---|
32 |
|
---|
33 | #endif // DEF_PACPUS_PLUGININTERFACE_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.