diff options
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&) { } |