forked from University/epr24pr5-ojanssen2
16 lines
265 B
C++
16 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
|