diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-11-14 15:26:38 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-11-14 15:26:38 -0500 |
commit | 7d6cfecf8c80394934f49c7d3201583fc8f8abf4 (patch) | |
tree | 6b387892fd50559bbc1226c05ee20f53a73be1a0 /cpp/demo/Freeze/transform/recreate.cpp | |
parent | Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff) | |
download | ice-7d6cfecf8c80394934f49c7d3201583fc8f8abf4.tar.bz2 ice-7d6cfecf8c80394934f49c7d3201583fc8f8abf4.tar.xz ice-7d6cfecf8c80394934f49c7d3201583fc8f8abf4.zip |
New Map::recreate and Freeze/transform demo
Diffstat (limited to 'cpp/demo/Freeze/transform/recreate.cpp')
-rw-r--r-- | cpp/demo/Freeze/transform/recreate.cpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/cpp/demo/Freeze/transform/recreate.cpp b/cpp/demo/Freeze/transform/recreate.cpp new file mode 100644 index 00000000000..ecd2c949730 --- /dev/null +++ b/cpp/demo/Freeze/transform/recreate.cpp @@ -0,0 +1,39 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2007 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 <Ice/Ice.h> +#include <Freeze/Freeze.h> +#include <NewContacts.h> + +using namespace std; +using namespace Demo; +using namespace Freeze; + +class Recreate : public Ice::Application +{ +public: + + virtual int run(int, char*[]); +}; + +int main(int argc, char* argv[]) +{ + Recreate app; + return app.main(argc, argv); +} + +int +Recreate::run(int argc, char* argv[]) +{ + ConnectionPtr connection = createConnection(communicator(), "dbnew"); + NewContacts::recreate(connection, "contacts"); + + cout << "Recreated contacts database successfully!" << endl; + return 0; +} |