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

Last change on this file since 64 was 64, checked in by Marek Kurdej, 11 years ago

Modified property: added svn:keywords=Id.

  • Property svn:keywords set to Id
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: PacpusPluginInterface.h 64 2013-01-09 16:41:12Z kurdejma $
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 */
18class PacpusPluginInterface
19{
20public:
21 /** Dtor of PacpusPluginInterface. */
22 virtual ~PacpusPluginInterface(){}
23
24 /** Name of the plugin. */
25 virtual QString name() = 0;
26};
27
28Q_DECLARE_INTERFACE(PacpusPluginInterface, "pacpus.ComponentBaseInterface/1.0")
29
30#endif // DEF_PACPUS_PLUGININTERFACE_H
Note: See TracBrowser for help on using the repository browser.