myshell 2.0.0
Loading...
Searching...
No Matches
msh_command_fwd.h
1//
2// Created by andrew on 11/4/23.
3//
4
5#ifndef MYSHELL_MSH_COMMAND_FWD_H
6#define MYSHELL_MSH_COMMAND_FWD_H
7
8#include <memory>
9
10struct command;
11using simple_command_t = struct simple_command;
13using simple_command_ptr = std::shared_ptr<simple_command_t>;
14using connection_command_ptr = std::shared_ptr<connection_command_t>;
15
16#endif //MYSHELL_MSH_COMMAND_FWD_H
Top-level command structure.
Definition msh_command.h:48
Connection command structure.
Definition msh_command.h:214
Simple command structure.
Definition msh_command.h:87