You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@corinthia.apache.org by ja...@apache.org on 2015/08/15 16:09:04 UTC

[2/2] incubator-corinthia git commit: framework for slim interface between TK-implementation and TK-generic (ASF license)

framework for slim interface between TK-implementation and TK-generic (ASF license)


Project: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/commit/133150eb
Tree: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/tree/133150eb
Diff: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/diff/133150eb

Branch: refs/heads/editorFramework
Commit: 133150eb78f4ab339246c83d8f338cb02713314e
Parents: 30ae571
Author: jani <ja...@apache.org>
Authored: Sat Aug 15 16:08:41 2015 +0200
Committer: jani <ja...@apache.org>
Committed: Sat Aug 15 16:08:41 2015 +0200

----------------------------------------------------------------------
 .../src/Layer1_toolkit/qt/qt_toolkit.c          | 20 ++++++++++++
 .../src/Layer1_toolkit/qt/qt_toolkit.h          | 33 ++++++++++++++++++++
 2 files changed, 53 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/133150eb/experiments/editorFramework/src/Layer1_toolkit/qt/qt_toolkit.c
----------------------------------------------------------------------
diff --git a/experiments/editorFramework/src/Layer1_toolkit/qt/qt_toolkit.c b/experiments/editorFramework/src/Layer1_toolkit/qt/qt_toolkit.c
new file mode 100644
index 0000000..908cb1f
--- /dev/null
+++ b/experiments/editorFramework/src/Layer1_toolkit/qt/qt_toolkit.c
@@ -0,0 +1,20 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+#pragma once
+#include "qt_toolkit.h"
+

http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/133150eb/experiments/editorFramework/src/Layer1_toolkit/qt/qt_toolkit.h
----------------------------------------------------------------------
diff --git a/experiments/editorFramework/src/Layer1_toolkit/qt/qt_toolkit.h b/experiments/editorFramework/src/Layer1_toolkit/qt/qt_toolkit.h
new file mode 100644
index 0000000..031ed49
--- /dev/null
+++ b/experiments/editorFramework/src/Layer1_toolkit/qt/qt_toolkit.h
@@ -0,0 +1,33 @@
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+
+#pragma once
+#include "../toolkit.h"
+
+/*
+ * Implementation of toolkit generic interface in Qt
+ *
+ */
+
+
+class qt_toolkit : toolkit
+{
+    /* toolkit qt implementation */
+
+public:
+};
+