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

Last change on this file since 3 was 3, checked in by sgosseli, 12 years ago
  • Add the existing Pacpus files from pacpusdev and pacpuscore.
  • Provide a clean build system based on multiple CMake files.
File size: 313 bytes
Line 
1
2
3
4#ifndef _PACPUSPLUGININTERFACE_H_
5#define _PACPUSPLUGININTERFACE_H_
6
7
8
9class PacpusPluginInterface
10{
11public:
12 // destructor
13 virtual ~PacpusPluginInterface(){}
14 virtual QString name() = 0;
15
16};
17
18Q_DECLARE_INTERFACE(PacpusPluginInterface,
19 "pacpus.ComponentBaseInterface/1.0")
20
21
22#endif
Note: See TracBrowser for help on using the repository browser.