reorganized bluetooth-qt and added declarative plugin
[profile/ivi/bluetooth-qt.git] / declarative / components.h
1 /*
2  * Copyright 2011 Intel Corporation.
3  *
4  * This program is licensed under the terms and conditions of the
5  * Apache License, version 2.0.  The full text of the Apache License is at 
6  * http://www.apache.org/licenses/LICENSE-2.0
7  */
8
9 #ifndef COMPONENTS_H
10 #define COMPONENTS_H
11
12 #include <QtDeclarative/qdeclarative.h>
13 #include <QtDeclarative/QDeclarativeExtensionPlugin>
14
15 class Components : public QDeclarativeExtensionPlugin
16 {
17     Q_OBJECT
18
19 public:
20     void registerTypes(const char *uri);
21     void initializeEngine(QDeclarativeEngine *engine, const char *uri);
22 };
23
24 #endif // COMPONENTS_H