3.0
Last change
on this file since 71:415b45c71663 was
71:415b45c71663,
checked in by Sämy Zehnder <saemy.zehnder@…>, 12 years ago
|
- Reorganized all the libraries. libinterfaces and libgateways are removed now and libdatatypes contains now all these files.
|
File size:
416 bytes
|
Line | |
---|
1 | /* |
---|
2 | * iinterface.h |
---|
3 | * |
---|
4 | * Created on: May 2, 2009 |
---|
5 | * Author: saemy |
---|
6 | */ |
---|
7 | |
---|
8 | #ifndef IINTERFACE_H_ |
---|
9 | #define IINTERFACE_H_ |
---|
10 | |
---|
11 | #include <QObject> |
---|
12 | |
---|
13 | class IInterface { |
---|
14 | public: |
---|
15 | virtual ~IInterface(){}; |
---|
16 | }; |
---|
17 | Q_DECLARE_INTERFACE(IInterface, "ch.gorrion.smssender.IInterface/1.0") |
---|
18 | |
---|
19 | |
---|
20 | #if !defined(SET_IF_DIFFERENT) |
---|
21 | # define SET_IF_DIFFERENT(local, other) if (local != other) local = other; |
---|
22 | #endif |
---|
23 | |
---|
24 | #endif /* IINTERFACE_H_ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.