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