A simple scripting language in C++
Ferenc Szontágh
2025-04-18 4abeb5f8a6ad77b32496f3e8b20e1fd1b6f428fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef SYMBOLS_PARAMETER_CONTAINER_HPP
#define SYMBOLS_PARAMETER_CONTAINER_HPP
 
#include <string>
#include <vector>
 
#include "Symbols/VariableTypes.hpp"
 
namespace Symbols {
struct functionParameterType {
    std::string              name;
    Symbols::Variables::Type type;
};
 
using FunctionParameterInfo = std::vector<Symbols::functionParameterType>;
}  // namespace Symbols
#endif