summaryrefslogtreecommitdiff
path: root/cpp/src/slice2py/Main.cpp
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2015-04-20 11:15:04 -0230
committerMatthew Newhook <matthew@zeroc.com>2015-04-20 11:15:04 -0230
commitbf0b70be54239f969c58ea468dd45fba712dad4b (patch)
tree006dc77387836c2f84a01b4538f7d621ab4739c8 /cpp/src/slice2py/Main.cpp
parentFixed IceSSL OpenSSL implementation to provide and use the verified certifica... (diff)
downloadice-bf0b70be54239f969c58ea468dd45fba712dad4b.tar.bz2
ice-bf0b70be54239f969c58ea468dd45fba712dad4b.tar.xz
ice-bf0b70be54239f969c58ea468dd45fba712dad4b.zip
ICE-6455 - remove slice2py and slice2rb C++ exe
Diffstat (limited to 'cpp/src/slice2py/Main.cpp')
-rw-r--r--cpp/src/slice2py/Main.cpp44
1 files changed, 0 insertions, 44 deletions
diff --git a/cpp/src/slice2py/Main.cpp b/cpp/src/slice2py/Main.cpp
deleted file mode 100644
index 749749ff1bd..00000000000
--- a/cpp/src/slice2py/Main.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-#include <Slice/PythonUtil.h>
-#include <Slice/Util.h>
-
-using namespace std;
-using namespace Slice;
-using namespace Slice::Python;
-
-int
-main(int argc, char* argv[])
-{
- try
- {
- return Slice::Python::compile(argc, argv);
- }
- catch(const std::exception& ex)
- {
- getErrorStream() << argv[0] << ": error:" << ex.what() << endl;
- return EXIT_FAILURE;
- }
- catch(const std::string& msg)
- {
- getErrorStream() << argv[0] << ": error:" << msg << endl;
- return EXIT_FAILURE;
- }
- catch(const char* msg)
- {
- getErrorStream() << argv[0] << ": error:" << msg << endl;
- return EXIT_FAILURE;
- }
- catch(...)
- {
- getErrorStream() << argv[0] << ": error:" << "unknown exception" << endl;
- return EXIT_FAILURE;
- }
-}