Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
EOTCommand.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <ast/Command.h>
10
11namespace cli {
12
13class EOTCommand : public Command {
14public:
15 CommandResult run ( Environment & /* environment */ ) const override {
16 return CommandResult::EOT;
17 }
18};
19
20} /* namespace cli */
21
Definition: Command.h:14
Definition: EOTCommand.h:13
CommandResult run(Environment &) const override
Definition: EOTCommand.h:15
Definition: Environment.h:29
Definition: Arg.h:11
CommandResult
Definition: CommandResult.h:10