diff options
author | Jose <jose@zeroc.com> | 2014-09-01 13:54:22 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-09-01 13:54:22 +0200 |
commit | 3d615bbebf537bea6ae93fc46abd3af7113fab66 (patch) | |
tree | 4b0d17bc7bc2ad9430b8af719bb057fdb3de9a67 /cpp/include/IceUtil/ArgVector.h | |
parent | New fix for ICE-5637: Glacier2CryptPermissionsVerifier plugin + Glacier2Inter... (diff) | |
download | ice-3d615bbebf537bea6ae93fc46abd3af7113fab66.tar.bz2 ice-3d615bbebf537bea6ae93fc46abd3af7113fab66.tar.xz ice-3d615bbebf537bea6ae93fc46abd3af7113fab66.zip |
Fix (ICE-3445) - consider not installing internal header files
Diffstat (limited to 'cpp/include/IceUtil/ArgVector.h')
-rw-r--r-- | cpp/include/IceUtil/ArgVector.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/cpp/include/IceUtil/ArgVector.h b/cpp/include/IceUtil/ArgVector.h deleted file mode 100644 index 8b34e30bdad..00000000000 --- a/cpp/include/IceUtil/ArgVector.h +++ /dev/null @@ -1,41 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2014 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. -// -// ********************************************************************** - -#ifndef ICE_UTIL_ARGVECTOR_H -#define ICE_UTIL_ARGVECTOR_H - -#include <IceUtil/Config.h> -#include <vector> -#include <string> - -namespace IceUtilInternal -{ - -class ICE_UTIL_API ArgVector -{ -public: - - ArgVector(int argc, char* const argv[]); - ArgVector(const ::std::vector< ::std::string>&); - ArgVector(const ArgVector&); - ArgVector& operator=(const ArgVector&); - ~ArgVector(); - - int argc; - char** argv; - -private: - - ::std::vector< ::std::string> _args; - void setupArgcArgv(); -}; - -} - -#endif |