forked from University/epr24pr5-ojanssen2
16 lines
281 B
C++
16 lines
281 B
C++
#pragma once
|
|
#ifndef DELCOMMAND_H
|
|
#define DELCOMMAND_H
|
|
#include "SubCommand.h"
|
|
|
|
namespace commands {
|
|
|
|
class DelCommand : public SubCommand {
|
|
public:
|
|
DelCommand();
|
|
void run(int argc, stringstream& args) override;
|
|
};
|
|
|
|
} // commands
|
|
|
|
#endif //DELCOMMAND_H
|