summaryrefslogtreecommitdiff
path: root/nss-tool/db/dbtool.h
diff options
context:
space:
mode:
Diffstat (limited to 'nss-tool/db/dbtool.h')
-rw-r--r--nss-tool/db/dbtool.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/nss-tool/db/dbtool.h b/nss-tool/db/dbtool.h
index 927afa9f8..dd0ef0ace 100644
--- a/nss-tool/db/dbtool.h
+++ b/nss-tool/db/dbtool.h
@@ -8,13 +8,14 @@
#include <string>
#include <vector>
#include "argparse.h"
+#include "tool.h"
-class DBTool {
+class DBTool : public Tool {
public:
- bool Run(const std::vector<std::string>& arguments);
+ bool Run(const std::vector<std::string>& arguments) override;
private:
- void Usage();
+ void Usage() override;
bool PathHasDBFiles(std::string path);
void ListCertificates();
bool ImportCertificate(const ArgParser& parser);