diff options
author | Andre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk> | 2012-02-29 17:57:17 -0300 |
---|---|---|
committer | Andre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk> | 2012-04-02 10:26:30 -0300 |
commit | 2defc720c08392d38ed58556d87d5b1ea20c3340 (patch) | |
tree | 657984a5752917e01a57f583b7f29f025be05d25 /TelepathyQt/AbstractAdaptor | |
parent | ab36ec6f15e8ab2af32be862bcc6a13d4bffaf88 (diff) |
Remove separation from client and service side high-level APIs.
To be more consitent with how client side is implemented, the service side high-level
classes are now moved to the TelepathyQt dir, removing the separate Service dir.
Library specific globals (TP_QT_EXPORT, etc) are now shared between tp-qt-service and tp-qt.
The plan is to merge both libraries into tp-qt in the future, when the service side bindings
are API/ABI stable.
Diffstat (limited to 'TelepathyQt/AbstractAdaptor')
-rw-r--r-- | TelepathyQt/AbstractAdaptor | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/TelepathyQt/AbstractAdaptor b/TelepathyQt/AbstractAdaptor new file mode 100644 index 00000000..47302bfc --- /dev/null +++ b/TelepathyQt/AbstractAdaptor @@ -0,0 +1,13 @@ +#ifndef _TelepathyQt_AbstractAdaptor_HEADER_GUARD_ +#define _TelepathyQt_AbstractAdaptor_HEADER_GUARD_ + +#ifndef IN_TP_QT_HEADER +#define IN_TP_QT_HEADER +#endif + +#include <TelepathyQt/abstract-adaptor.h> + +#undef IN_TP_QT_HEADER + +#endif +// vim:set ft=cpp: |