// ********************************************************************** // // Copyright (c) 2003-2009 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 #include #include 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; }