src/hbcore/inputfw/hbinputpredictionfactory.h
changeset 6 c3690ec91ef8
parent 0 16d8024aca5e
--- a/src/hbcore/inputfw/hbinputpredictionfactory.h	Fri Jun 11 13:58:22 2010 +0300
+++ b/src/hbcore/inputfw/hbinputpredictionfactory.h	Wed Jun 23 18:33:25 2010 +0300
@@ -23,8 +23,8 @@
 **
 ****************************************************************************/
 
-#ifndef HB_PREDICTION_FACTORY_H
-#define HB_PREDICTION_FACTORY_H
+#ifndef HB_INPUT_PREDICTION_FACTORY_H
+#define HB_INPUT_PREDICTION_FACTORY_H
 
 #include <QObject>
 #include <QList>
@@ -39,7 +39,7 @@
 {
 public:
     virtual ~HbPredictionPlugin() {}
-    virtual HbPredictionEngine* createInterface() = 0;
+    virtual HbPredictionEngine *createInterface() = 0;
     virtual HbPredictionInterfaceType type() const = 0;
     virtual QList<HbInputLanguage> languages() const = 0;
     virtual QString vendorId() const = 0;
@@ -49,15 +49,15 @@
 
 class HB_CORE_EXPORT HbPredictionFactory : public QObject
 {
-Q_OBJECT
+    Q_OBJECT
 public:
-    static HbPredictionFactory* instance();
+    static HbPredictionFactory *instance();
 
-    HbPredictionEngine* predictionEngineForLanguage(const HbInputLanguage &language);
+    HbPredictionEngine *predictionEngineForLanguage(const HbInputLanguage &language);
     QList<int> allPredictionEnginesForLanguage(const HbInputLanguage &language);
     QList<int> allPredictionEngines();
-    HbPredictionEngine* createEngine(int handle);
-    HbPredictionEngine* createEngine(const QString& vendorIdString);
+    HbPredictionEngine *createEngine(int handle);
+    HbPredictionEngine *createEngine(const QString &vendorIdString);
 
     void initialize();
     void clearEngineData();
@@ -70,13 +70,13 @@
     HbPredictionFactory();
 
     // Prevent copying
-    HbPredictionFactory(const HbPredictionFactory&);
-    HbPredictionFactory& operator = (const HbPredictionFactory& other);
+    HbPredictionFactory(const HbPredictionFactory &);
+    HbPredictionFactory &operator = (const HbPredictionFactory &other);
 
 private:
-    HbPredictionFactoryPrivate* d;
+    HbPredictionFactoryPrivate *d;
 };
 
-#endif // HB_PREDICTION_FACTORY_H
+#endif // HB_INPUT_PREDICTION_FACTORY_H
 
 // End of file