OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at |
| 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. |
| 14 |
| 15 #ifndef CRASHPAD_TOOLS_TOOL_SUPPORT_H_ |
| 16 #define CRASHPAD_TOOLS_TOOL_SUPPORT_H_ |
| 17 |
| 18 #include <string> |
| 19 |
| 20 #include "base/basictypes.h" |
| 21 |
| 22 namespace crashpad { |
| 23 |
| 24 //! \brief Common functions used by command line tools. |
| 25 class ToolSupport { |
| 26 public: |
| 27 //! \brief Handles `--version`. |
| 28 //! |
| 29 //! \param[in] me The tool’s name, the basename of `argv[0]`. |
| 30 static void Version(const std::string& me); |
| 31 |
| 32 //! \brief Prints the footer for `--help`. |
| 33 //! |
| 34 //! \param[in] me The tool’s name, the basename of `argv[0]`. |
| 35 static void UsageTail(const std::string& me); |
| 36 |
| 37 //! \brief Suggests using `--help` when a command line tool can’t make sense |
| 38 //! of its arguments. |
| 39 //! |
| 40 //! \param[in] me The tool’s name, the basename of `argv[0]`. |
| 41 static void UsageHint(const std::string& me, const char* hint); |
| 42 |
| 43 private: |
| 44 DISALLOW_IMPLICIT_CONSTRUCTORS(ToolSupport); |
| 45 }; |
| 46 |
| 47 } // namespace crashpad |
| 48 |
| 49 #endif // CRASHPAD_TOOLS_TOOL_SUPPORT_H_ |
OLD | NEW |