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

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

Added: automated license updating lines:
%pacpus:license{
%pacpus:license}

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