Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
CommandResult.h
Go to the documentation of this file.
1
6#pragma once
7
8namespace cli {
9
10enum class CommandResult {
11 OK,
12 QUIT,
13 RETURN,
15 BREAK,
17 ERROR,
18 EOT
19};
20
21} /* namespace cli */
22
Definition: Arg.h:11
CommandResult
Definition: CommandResult.h:10