diff options
author | Bernard Normier <bernard@zeroc.com> | 2017-03-28 11:15:18 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2017-03-28 11:15:18 -0400 |
commit | 232397a680be8f6dc86d44199474ea00f3a6d13b (patch) | |
tree | 374025ce533d8a9cd2a624552a8b5fe2e8f99bdd /cpp/src/Ice/Application.cpp | |
parent | Fix (ICE-6724) - Scripts process termination on Windows (diff) | |
download | ice-232397a680be8f6dc86d44199474ea00f3a6d13b.tar.bz2 ice-232397a680be8f6dc86d44199474ea00f3a6d13b.tar.xz ice-232397a680be8f6dc86d44199474ea00f3a6d13b.zip |
Moved ArgVector to IceInternal
Diffstat (limited to 'cpp/src/Ice/Application.cpp')
-rw-r--r-- | cpp/src/Ice/Application.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/Ice/Application.cpp b/cpp/src/Ice/Application.cpp index ea9b3588d67..0d817c55ada 100644 --- a/cpp/src/Ice/Application.cpp +++ b/cpp/src/Ice/Application.cpp @@ -11,7 +11,7 @@ #include <Ice/LoggerI.h> #include <Ice/LoggerUtil.h> #include <IceUtil/CtrlCHandler.h> -#include <IceUtil/ArgVector.h> +#include <Ice/ArgVector.h> #ifdef _WIN32 const DWORD SIGHUP = CTRL_LOGOFF_EVENT; @@ -21,6 +21,7 @@ const DWORD SIGHUP = CTRL_LOGOFF_EVENT; using namespace std; using namespace Ice; +using namespace IceInternal; using namespace IceUtil; using namespace IceUtilInternal; |