diff options
Diffstat (limited to 'cpp/src/IceUtil/ArgVector.h')
-rw-r--r-- | cpp/src/IceUtil/ArgVector.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/cpp/src/IceUtil/ArgVector.h b/cpp/src/IceUtil/ArgVector.h deleted file mode 100644 index 0648112f7ad..00000000000 --- a/cpp/src/IceUtil/ArgVector.h +++ /dev/null @@ -1,41 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2017 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_API ArgVector -{ -public: - - ArgVector(int argc, const 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 |