diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2004-06-25 13:58:59 +0000 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2004-06-25 13:58:59 +0000 |
commit | c9f4ff5d6ecace826d467fbb53558fc06ad65e0b (patch) | |
tree | 1f79efdde59338064fc5df6c32d8be1228a7d068 | |
parent | 2b8017b35fe959809f9d6c251ea8d4f94bc042fc (diff) |
INTEGRATION: CWS mergebuild (1.1.76); FILE MERGED
2003/11/05 08:32:47 tra 1.1.76.1: #112953#changed tool to deal with ulf files and iso language code
-rw-r--r-- | shell/source/tools/lngconvex/cmdline.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/source/tools/lngconvex/cmdline.hxx b/shell/source/tools/lngconvex/cmdline.hxx index 57960a986c66..584845a5acba 100644 --- a/shell/source/tools/lngconvex/cmdline.hxx +++ b/shell/source/tools/lngconvex/cmdline.hxx @@ -28,7 +28,7 @@ public: /** Return the argument count */ - size_t GetArgumentCount() const; + size_t get_arg_count() const; /** Return an argument by index This method doesn't skip argument @@ -41,7 +41,7 @@ public: @throws std::out_of_range exception if the given index is to high */ - std::string GetArgument(size_t Index) const; + std::string get_arg(size_t Index) const; /** Returns all argument name found in the command line. An argument will be identified @@ -50,7 +50,7 @@ public: If there are no argument names the returned container is empty. */ - StringListPtr_t GetArgumentNames() const; + StringListPtr_t get_arg_names() const; /** Returns an argument by name. If there are duplicate argument names in the command line, @@ -68,7 +68,7 @@ public: if the specified argument could not be found */ - std::string GetArgument(const std::string& ArgumentName) const; + std::string get_arg(const std::string& ArgumentName) const; //################################ @@ -84,13 +84,13 @@ public: @throws std::invalid_argument exception if the prefix is empty */ - void SetArgumentPrefix(const std::string& Prefix); + void set_arg_prefix(const std::string& Prefix); private: /** Returns whether a given argument is an argument name */ - bool IsArgumentName(const std::string& Argument) const; + bool is_arg_name(const std::string& Argument) const; private: size_t m_argc; |