Last change
on this file since 62 was 62, checked in by Marek Kurdej, 12 years ago |
Update: license info.
|
File size:
797 bytes
|
Line | |
---|
1 | // This file is part of the PACPUS framework distributed under the
|
---|
2 | // CECILL-C License, Version 1.0.
|
---|
3 | //
|
---|
4 | /// @author Firstname Surname <firstname.surname@utc.fr>
|
---|
5 | /// @date Month, Year
|
---|
6 | /// @version $Id$
|
---|
7 | /// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
|
---|
8 | /// @brief Brief description.
|
---|
9 | ///
|
---|
10 | /// Detailed description.
|
---|
11 |
|
---|
12 | #ifndef DEF_PACPUS_PLUGININTERFACE_H
|
---|
13 | #define DEF_PACPUS_PLUGININTERFACE_H
|
---|
14 |
|
---|
15 | /** PacpusPluginInterface
|
---|
16 | * @brief Base class of a Pacpus plugin.
|
---|
17 | */
|
---|
18 | class PacpusPluginInterface
|
---|
19 | {
|
---|
20 | public:
|
---|
21 | /** Dtor of PacpusPluginInterface. */
|
---|
22 | virtual ~PacpusPluginInterface(){}
|
---|
23 |
|
---|
24 | /** Name of the plugin. */
|
---|
25 | virtual QString name() = 0;
|
---|
26 | };
|
---|
27 |
|
---|
28 | Q_DECLARE_INTERFACE(PacpusPluginInterface, "pacpus.ComponentBaseInterface/1.0")
|
---|
29 |
|
---|
30 | #endif // DEF_PACPUS_PLUGININTERFACE_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.