diff options
author | Matthew Newhook <matthew@zeroc.com> | 2005-08-09 06:57:43 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2005-08-09 06:57:43 +0000 |
commit | 3e347721b5881a3bc792eceba86346905c759db4 (patch) | |
tree | c8e7ecd5ab13581d8d68ef4c7bd304f5f5ad1946 /cppe/demo/IceE/MFC/client/HelloClient.cpp | |
parent | cleanup. CE demos now use config.txt (diff) | |
download | ice-3e347721b5881a3bc792eceba86346905c759db4.tar.bz2 ice-3e347721b5881a3bc792eceba86346905c759db4.tar.xz ice-3e347721b5881a3bc792eceba86346905c759db4.zip |
- IceE now supports datagram, batch datagram and secure modes.
- The modes are preserved by the proxy.
- stringified proxies can be both read/written which contain these modes.
- any attempt to call on a proxy which supports contains this an
unsupported mode will result in a NoEndpointException.
Diffstat (limited to 'cppe/demo/IceE/MFC/client/HelloClient.cpp')
-rw-r--r-- | cppe/demo/IceE/MFC/client/HelloClient.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cppe/demo/IceE/MFC/client/HelloClient.cpp b/cppe/demo/IceE/MFC/client/HelloClient.cpp index 021a62a1438..66f256c29a0 100644 --- a/cppe/demo/IceE/MFC/client/HelloClient.cpp +++ b/cppe/demo/IceE/MFC/client/HelloClient.cpp @@ -16,6 +16,8 @@ //#define new DEBUG_NEW
//#endif
+using namespace std;
+
BEGIN_MESSAGE_MAP(CHelloClientApp, CWinApp)
ON_COMMAND(ID_HELP, CWinApp::OnHelp)
END_MESSAGE_MAP()
@@ -66,7 +68,7 @@ CHelloClientApp::InitInstance() { properties->load(config); } - catch(const FileException&) + catch(const Ice::FileException&) { } |