diff options
Diffstat (limited to 'LoadFilesCommand.h')
-rw-r--r-- | LoadFilesCommand.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/LoadFilesCommand.h b/LoadFilesCommand.h index 468bb33..e13d873 100644 --- a/LoadFilesCommand.h +++ b/LoadFilesCommand.h @@ -6,16 +6,13 @@ #include "Command.h" class LoadFilesCommand : public Command { + using Command::Command; + public: virtual void execute(std::vector<std::string> files); virtual void execute(int argc, char ** argv); private: void load_files(std::vector<std::string> files); - -private: - virtual void execute() {}; // unused - - using Command::Command; }; |