Skip to content
Snippets Groups Projects
Commit 05620b8e authored by Jan Trávníček's avatar Jan Trávníček
Browse files

move commands under ast

parent e785c6c3
No related branches found
No related tags found
1 merge request!121Merge jt
Pipeline #59941 passed with warnings
Showing
with 30 additions and 30 deletions
#ifndef _CLI_COMMAND_H_ #ifndef _CLI_COMMAND_H_
#define _CLI_COMMAND_H_ #define _CLI_COMMAND_H_
   
#include <command/CommandResult.h> #include <ast/command/CommandResult.h>
   
namespace cli { namespace cli {
   
......
#ifndef _CLI_ALGORITHMS_INTROSPECTION_COMMAND_H_ #ifndef _CLI_ALGORITHMS_INTROSPECTION_COMMAND_H_
#define _CLI_ALGORITHMS_INTROSPECTION_COMMAND_H_ #define _CLI_ALGORITHMS_INTROSPECTION_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
   
namespace cli { namespace cli {
......
#ifndef _CLI_BINDINGS_INTROSPECTION_COMMAND_H_ #ifndef _CLI_BINDINGS_INTROSPECTION_COMMAND_H_
#define _CLI_BINDINGS_INTROSPECTION_COMMAND_H_ #define _CLI_BINDINGS_INTROSPECTION_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
   
namespace cli { namespace cli {
......
#ifndef _CLI_CAST_INTROSPECTION_COMMAND_H_ #ifndef _CLI_CAST_INTROSPECTION_COMMAND_H_
#define _CLI_CAST_INTROSPECTION_COMMAND_H_ #define _CLI_CAST_INTROSPECTION_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
#include <alib/list> #include <alib/list>
   
......
#ifndef _CLI_COMMAND_LIST_H_ #ifndef _CLI_COMMAND_LIST_H_
#define _CLI_COMMAND_LIST_H_ #define _CLI_COMMAND_LIST_H_
   
#include <command/Command.h> #include <ast/Command.h>
   
namespace cli { namespace cli {
   
......
#ifndef _CLI_DATA_TYPE_INTROSPECTION_COMMAND_H_ #ifndef _CLI_DATA_TYPE_INTROSPECTION_COMMAND_H_
#define _CLI_DATA_TYPE_INTROSPECTION_COMMAND_H_ #define _CLI_DATA_TYPE_INTROSPECTION_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
   
#include <registry/XmlRegistry.h> #include <registry/XmlRegistry.h>
......
#ifndef _CLI_EOT_COMMAND_H_ #ifndef _CLI_EOT_COMMAND_H_
#define _CLI_EOT_COMMAND_H_ #define _CLI_EOT_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
   
namespace cli { namespace cli {
......
#ifndef _CLI_EXECUTE_COMMAND_H_ #ifndef _CLI_EXECUTE_COMMAND_H_
#define _CLI_EXECUTE_COMMAND_H_ #define _CLI_EXECUTE_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
#include <ast/Statement.h> #include <ast/Statement.h>
   
......
#ifndef _CLI_HELP_COMMAND_H_ #ifndef _CLI_HELP_COMMAND_H_
#define _CLI_HELP_COMMAND_H_ #define _CLI_HELP_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
   
namespace cli { namespace cli {
......
#ifndef _CLI_LOAD_COMMAND_H_ #ifndef _CLI_LOAD_COMMAND_H_
#define _CLI_LOAD_COMMAND_H_ #define _CLI_LOAD_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
   
#include <common/LibraryLoader.h> #include <common/LibraryLoader.h>
......
#ifndef _CLI_OVERLOADS_INTROSPECTION_COMMAND_H_ #ifndef _CLI_OVERLOADS_INTROSPECTION_COMMAND_H_
#define _CLI_OVERLOADS_INTROSPECTION_COMMAND_H_ #define _CLI_OVERLOADS_INTROSPECTION_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
   
namespace cli { namespace cli {
......
#ifndef _CLI_QUIT_COMMAND_H_ #ifndef _CLI_QUIT_COMMAND_H_
#define _CLI_QUIT_COMMAND_H_ #define _CLI_QUIT_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
#include <ast/Statement.h> #include <ast/Statement.h>
   
......
#ifndef _CLI_SET_COMMAND_H_ #ifndef _CLI_SET_COMMAND_H_
#define _CLI_SET_COMMAND_H_ #define _CLI_SET_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
#include <global/GlobalData.h> #include <global/GlobalData.h>
#include <alib/random> #include <alib/random>
......
#ifndef _CLI_UNLOAD_COMMAND_H_ #ifndef _CLI_UNLOAD_COMMAND_H_
#define _CLI_UNLOAD_COMMAND_H_ #define _CLI_UNLOAD_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
   
#include <common/LibraryLoader.h> #include <common/LibraryLoader.h>
......
#ifndef _CLI_VARIABLES_INTROSPECTION_COMMAND_H_ #ifndef _CLI_VARIABLES_INTROSPECTION_COMMAND_H_
#define _CLI_VARIABLES_INTROSPECTION_COMMAND_H_ #define _CLI_VARIABLES_INTROSPECTION_COMMAND_H_
   
#include <command/Command.h> #include <ast/Command.h>
#include <environment/Environment.h> #include <environment/Environment.h>
   
namespace cli { namespace cli {
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
#include <exception/CommonException.h> #include <exception/CommonException.h>
   
#include <abstraction/ValueHolder.hpp> #include <abstraction/ValueHolder.hpp>
#include <command/CommandResult.h> #include <ast/command/CommandResult.h>
#include <lexer/CharSequence.h> #include <lexer/CharSequence.h>
   
namespace cli { namespace cli {
......
...@@ -15,19 +15,19 @@ ...@@ -15,19 +15,19 @@
#include <ast/args/BindedArg.h> #include <ast/args/BindedArg.h>
#include <ast/args/ImmediateArg.h> #include <ast/args/ImmediateArg.h>
   
#include <command/ExecuteCommand.h> #include <ast/command/ExecuteCommand.h>
#include <command/QuitCommand.h> #include <ast/command/QuitCommand.h>
#include <command/EOTCommand.h> #include <ast/command/EOTCommand.h>
#include <command/HelpCommand.h> #include <ast/command/HelpCommand.h>
#include <command/AlgorithmsIntrospectionCommand.h> #include <ast/command/AlgorithmsIntrospectionCommand.h>
#include <command/OverloadsIntrospectionCommand.h> #include <ast/command/OverloadsIntrospectionCommand.h>
#include <command/DataTypesIntrospectionCommand.h> #include <ast/command/DataTypesIntrospectionCommand.h>
#include <command/CastsIntrospectionCommand.h> #include <ast/command/CastsIntrospectionCommand.h>
#include <command/BindingsIntrospectionCommand.h> #include <ast/command/BindingsIntrospectionCommand.h>
#include <command/VariablesIntrospectionCommand.h> #include <ast/command/VariablesIntrospectionCommand.h>
#include <command/SetCommand.h> #include <ast/command/SetCommand.h>
#include <command/LoadCommand.h> #include <ast/command/LoadCommand.h>
#include <command/UnloadCommand.h> #include <ast/command/UnloadCommand.h>
   
namespace cli { namespace cli {
   
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
#include <ast/options/TypeOption.h> #include <ast/options/TypeOption.h>
#include <ast/options/CategoryOption.h> #include <ast/options/CategoryOption.h>
   
#include <command/CommandList.h> #include <ast/command/CommandList.h>
   
#include <ast/statements/StatementList.h> #include <ast/statements/StatementList.h>
   
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment