|
Last change
on this file since 7 was 3, checked in by sgosseli, 13 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 |
|
|---|
| 9 | class PacpusPluginInterface
|
|---|
| 10 | {
|
|---|
| 11 | public:
|
|---|
| 12 | // destructor
|
|---|
| 13 | virtual ~PacpusPluginInterface(){}
|
|---|
| 14 | virtual QString name() = 0;
|
|---|
| 15 |
|
|---|
| 16 | };
|
|---|
| 17 |
|
|---|
| 18 | Q_DECLARE_INTERFACE(PacpusPluginInterface,
|
|---|
| 19 | "pacpus.ComponentBaseInterface/1.0")
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.