summaryrefslogtreecommitdiffstats
path: root/cpp/sca/modules/eval/eval-shell.cpp
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2009-10-18 22:25:02 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2009-10-18 22:25:02 +0000
commit6dd3610df5854ef9af7e5e2907b2f4065d69075d (patch)
tree0e1ac578eabf3cf5906a9695a80dd1d0fae139a1 /cpp/sca/modules/eval/eval-shell.cpp
parent344e0e58ad63fba551f46fc4d9a2468e395f473a (diff)
Renamed xml-test to xsd-test. Added another test under modules/eval.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@826544 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/sca/modules/eval/eval-shell.cpp')
-rw-r--r--cpp/sca/modules/eval/eval-shell.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/cpp/sca/modules/eval/eval-shell.cpp b/cpp/sca/modules/eval/eval-shell.cpp
new file mode 100644
index 0000000000..46710b8354
--- /dev/null
+++ b/cpp/sca/modules/eval/eval-shell.cpp
@@ -0,0 +1,35 @@
+/*
+ * 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.
+ */
+
+/* $Rev$ $Date$ */
+
+/**
+ * Script evaluator shell, used for interactive testing of scripts.
+ */
+
+#include <assert.h>
+#include <iostream>
+#include <string>
+#include <sstream>
+#include "driver.hpp"
+
+int main() {
+ tuscany::evalDriverRun(std::cin, std::cout);
+ return 0;
+}