123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef cmExpandedCommandArgument_h
- #define cmExpandedCommandArgument_h
- #include "cmConfigure.h"
- #include <string>
- class cmExpandedCommandArgument
- {
- public:
- cmExpandedCommandArgument();
- cmExpandedCommandArgument(std::string const& value, bool quoted);
- std::string const& GetValue() const;
- bool WasQuoted() const;
- bool operator==(const char* value) const;
- bool operator==(std::string const& value) const;
- bool empty() const;
- const char* c_str() const;
- private:
- std::string Value;
- bool Quoted;
- };
- #endif
|