summaryrefslogtreecommitdiff
path: root/cpp/test/FreezeScript/dbmap/makedb.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2015-11-13 16:53:57 -0330
committerDwayne Boone <dwayne@zeroc.com>2015-11-13 16:53:57 -0330
commit99c3941638f735825b1bfa9f2df764255351242b (patch)
treefdde43c6580b785e5edc9ae90c26487d9e16be13 /cpp/test/FreezeScript/dbmap/makedb.cpp
parentadding registerIceBT (diff)
downloadice-99c3941638f735825b1bfa9f2df764255351242b.tar.bz2
ice-99c3941638f735825b1bfa9f2df764255351242b.tar.xz
ice-99c3941638f735825b1bfa9f2df764255351242b.zip
Moved Freeze to its own repository
Diffstat (limited to 'cpp/test/FreezeScript/dbmap/makedb.cpp')
-rw-r--r--cpp/test/FreezeScript/dbmap/makedb.cpp67
1 files changed, 0 insertions, 67 deletions
diff --git a/cpp/test/FreezeScript/dbmap/makedb.cpp b/cpp/test/FreezeScript/dbmap/makedb.cpp
deleted file mode 100644
index 894bf134a62..00000000000
--- a/cpp/test/FreezeScript/dbmap/makedb.cpp
+++ /dev/null
@@ -1,67 +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 <IceUtil/IceUtil.h>
-#include <Freeze/Freeze.h>
-#include <IntSMap.h>
-
-using namespace std;
-using namespace Ice;
-using namespace Freeze;
-using namespace Test;
-
-int
-run(const CommunicatorPtr& communicator, const string& envName, const string& dbName)
-{
- Freeze::ConnectionPtr connection = createConnection(communicator, envName);
- IntSMap m(connection, dbName);
-
- m.put(IntSMap::value_type(0, S()));
-
- return EXIT_SUCCESS;
-}
-
-int
-main(int argc, char* argv[])
-{
- int status;
- Ice::CommunicatorPtr communicator;
-
- string envName = "db";
-
- try
- {
- communicator = Ice::initialize(argc, argv);
- if(argc != 1)
- {
- envName = argv[1];
- envName += "/";
- envName += "db";
- }
-
- status = run(communicator, envName, "default.db");
- }
- catch(const Ice::Exception& ex)
- {
- cerr << ex << endl;
- status = EXIT_FAILURE;
- }
-
- try
- {
- communicator->destroy();
- }
- catch(const Ice::Exception& ex)
- {
- cerr << ex << endl;
- status = EXIT_FAILURE;
- }
-
- return status;
-}