aboutsummaryrefslogtreecommitdiff
path: root/examples/servicefw/provider/impl/org.maemo.textprocessor/textprocessor.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/servicefw/provider/impl/org.maemo.textprocessor/textprocessor.h')
-rw-r--r--examples/servicefw/provider/impl/org.maemo.textprocessor/textprocessor.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/examples/servicefw/provider/impl/org.maemo.textprocessor/textprocessor.h b/examples/servicefw/provider/impl/org.maemo.textprocessor/textprocessor.h
new file mode 100644
index 00000000..e7f530e5
--- /dev/null
+++ b/examples/servicefw/provider/impl/org.maemo.textprocessor/textprocessor.h
@@ -0,0 +1,37 @@
+/***************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (directui@nokia.com)
+**
+** This file is part of libdui.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at directui@nokia.com.
+**
+** This library is free software; you can redistribute it and/or
+** modify it under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation
+** and appearing in the file LICENSE.LGPL included in the packaging
+** of this file.
+**
+****************************************************************************/
+
+#ifndef TEXTPROCESSOR_H
+#define TEXTPROCESSOR_H
+
+#include <QObject>
+
+class QString;
+
+class TextProcessor : public QObject
+{
+ Q_OBJECT
+public:
+ TextProcessor();
+ virtual ~TextProcessor();
+
+public Q_SLOTS:
+ QString reverse(const QString &message);
+};
+#endif