summaryrefslogtreecommitdiffstats
path: root/plugins/declarative/declarativexypoint.cpp
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@digia.com>2012-05-21 10:22:32 +0300
committerMichal Klocek <michal.klocek@digia.com>2012-05-21 11:47:32 +0300
commit9dfce0b917b8ea9a45d66397869c01f3a138b66f (patch)
tree73bf7b3e8bdf55e7df0b502f08f1b9a937a8e823 /plugins/declarative/declarativexypoint.cpp
parentd626d028bb3845b4b308aa1b9401c48063d31309 (diff)
Move qmlplugins to plugins/declarative
Diffstat (limited to 'plugins/declarative/declarativexypoint.cpp')
-rw-r--r--plugins/declarative/declarativexypoint.cpp34
1 files changed, 34 insertions, 0 deletions
diff --git a/plugins/declarative/declarativexypoint.cpp b/plugins/declarative/declarativexypoint.cpp
new file mode 100644
index 00000000..5e303b95
--- /dev/null
+++ b/plugins/declarative/declarativexypoint.cpp
@@ -0,0 +1,34 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the Qt Commercial Charts Add-on.
+**
+** $QT_BEGIN_LICENSE$
+** Licensees holding valid Qt Commercial licenses may use this file in
+** accordance with the Qt Commercial License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#include "declarativexypoint.h"
+
+QTCOMMERCIALCHART_BEGIN_NAMESPACE
+
+DeclarativeXyPoint::DeclarativeXyPoint(QObject *parent) :
+ QObject(parent)
+{
+ setX(0.0);
+ setY(0.0);
+}
+
+#include "moc_declarativexypoint.cpp"
+
+QTCOMMERCIALCHART_END_NAMESPACE