10 lines
146 B
C++
10 lines
146 B
C++
|
#include "./Figment.h"
|
||
|
|
||
|
const std::vector<Command> emptyCommands;
|
||
|
|
||
|
const std::vector<Command>&
|
||
|
Task::commands() const
|
||
|
{
|
||
|
return emptyCommands;
|
||
|
}
|