epr24pr5-ojanssen2/DelCommand.h

17 lines
271 B
C
Raw Permalink Normal View History

#pragma once
#ifndef DELCOMMAND_H
#define DELCOMMAND_H
#include "SubCommand.h"
namespace commands {
class DelCommand : public SubCommand {
public:
DelCommand();
void run(stringstream& args) override;
};
} // commands
#endif //DELCOMMAND_H