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/read.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/read.cpp')
-rw-r--r-- | cpp/demo/Freeze/transform/read.cpp | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/cpp/demo/Freeze/transform/read.cpp b/cpp/demo/Freeze/transform/read.cpp new file mode 100644 index 00000000000..fb9ffec34b9 --- /dev/null +++ b/cpp/demo/Freeze/transform/read.cpp @@ -0,0 +1,52 @@ +// ********************************************************************** +// +// 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 <Contacts.h> + +using namespace std; +using namespace Demo; +using namespace Freeze; + +class Read : public Ice::Application +{ +public: + + virtual int run(int, char*[]); +}; + +int main(int argc, char* argv[]) +{ + Read app; + return app.main(argc, argv); +} + +int +Read::run(int argc, char* argv[]) +{ + ConnectionPtr connection = createConnection(communicator(), "db"); + const Contacts contacts(connection, "contacts", false); + + Contacts::const_iterator p; + + cout << "All contacts (default order)" << endl; + for(p = contacts.begin(); p != contacts.end(); ++p) + { + cout << p->first << ":\t\t" << p->second.phoneNumber << endl; + } + + cout << endl << "All contacts (ordered by phone number)" << endl; + for(p = contacts.beginForPhoneNumber(); p != contacts.endForPhoneNumber(); ++p) + { + cout << p->first << ":\t\t" << p->second.phoneNumber << endl; + } + + return 0; +} |