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

Last change on this file since 45 was 31, checked in by sgosseli, 12 years ago

Huge commit: use the new includes style in all the files, add the license header in all the headers, and in some cpp.

File size: 711 bytes
RevLine 
[31]1/**
2 *
3 * Distributed under the UTC Heudiascy Pacpus License, Version 1.0.
4 * Copyright (c) UTC Heudiasyc 2010 - 2013. All rights reserved.
5 *
6 * See the LICENSE file for more information or a copy at:
7 * http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt
8 *
9 */
[3]10
[31]11#ifndef DEF_PACPUS_PLUGININTERFACE_H
12#define DEF_PACPUS_PLUGININTERFACE_H
[3]13
[31]14/** PacpusPluginInterface
15 * @brief Base class of a Pacpus plugin.
16 */
[3]17class PacpusPluginInterface
18{
19public:
[31]20 /** Dtor of PacpusPluginInterface. */
[3]21 virtual ~PacpusPluginInterface(){}
[31]22
23 /** Name of the plugin. */
[3]24 virtual QString name() = 0;
25};
26
[31]27Q_DECLARE_INTERFACE(PacpusPluginInterface, "pacpus.ComponentBaseInterface/1.0")
[3]28
[31]29#endif // DEF_PACPUS_PLUGININTERFACE_H
Note: See TracBrowser for help on using the repository browser.