2020-08-09 00:31:18 -07:00
|
|
|
#ifndef POLSERVER_MODULEDESCRIPTOR_H
|
|
|
|
|
#define POLSERVER_MODULEDESCRIPTOR_H
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
2020-08-10 03:20:29 -07:00
|
|
|
namespace Pol::Bscript::Compiler
|
2020-08-09 00:31:18 -07:00
|
|
|
{
|
|
|
|
|
class ModuleFunctionDescriptor;
|
|
|
|
|
|
|
|
|
|
class ModuleDescriptor
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ModuleDescriptor( std::string name, std::vector<ModuleFunctionDescriptor> );
|
|
|
|
|
|
|
|
|
|
const std::string name;
|
|
|
|
|
const std::vector<ModuleFunctionDescriptor> functions;
|
|
|
|
|
};
|
|
|
|
|
|
2020-08-10 03:20:29 -07:00
|
|
|
} // namespace Pol::Bscript::Compiler
|
2020-08-09 00:31:18 -07:00
|
|
|
|
|
|
|
|
#endif // POLSERVER_MODULEDESCRIPTOR_H
|