digesttool.h (483B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 #ifndef digest_tool_h__ 6 #define digest_tool_h__ 7 8 #include <string> 9 #include <vector> 10 #include "tool.h" 11 12 class DigestTool : public Tool { 13 public: 14 bool Run(const std::vector<std::string>& arguments) override; 15 16 private: 17 void Usage() override; 18 }; 19 20 #endif // digest_tool_h__