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

Last change on this file since 66 was 66, checked in by Marek Kurdej, 12 years ago

Documentation: file info.

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