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/16 12:24:00 UTC

incubator-corinthia git commit: just a neat way to test for now

Repository: incubator-corinthia
Updated Branches:
  refs/heads/editorFramework 097b025ba -> 98affe88a


just a neat way to test for now


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

Branch: refs/heads/editorFramework
Commit: 98affe88aca9884cf3177429e02f56be5a6cfb29
Parents: 097b025
Author: jani <ja...@apache.org>
Authored: Sun Aug 16 12:23:47 2015 +0200
Committer: jani <ja...@apache.org>
Committed: Sun Aug 16 12:23:47 2015 +0200

----------------------------------------------------------------------
 experiments/editorFramework/main.cpp | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/98affe88/experiments/editorFramework/main.cpp
----------------------------------------------------------------------
diff --git a/experiments/editorFramework/main.cpp b/experiments/editorFramework/main.cpp
new file mode 100644
index 0000000..e677d8a
--- /dev/null
+++ b/experiments/editorFramework/main.cpp
@@ -0,0 +1,25 @@
+// 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.
+
+#include "toolkit.hpp"
+
+int main(int argc, char *argv[])
+{
+  toolkit *tk = toolkit::createInstance(0, 0);
+  tk->startWindow();
+  tk->run();
+}