mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
22 lines
460 B
C++
22 lines
460 B
C++
#ifndef POLSERVER_MODULEDESCRIPTOR_H
|
|
#define POLSERVER_MODULEDESCRIPTOR_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace Pol::Bscript::Compiler
|
|
{
|
|
class ModuleFunctionDescriptor;
|
|
|
|
class ModuleDescriptor
|
|
{
|
|
public:
|
|
ModuleDescriptor( std::string name, std::vector<ModuleFunctionDescriptor> );
|
|
|
|
const std::string name;
|
|
const std::vector<ModuleFunctionDescriptor> functions;
|
|
};
|
|
|
|
} // namespace Pol::Bscript::Compiler
|
|
|
|
#endif // POLSERVER_MODULEDESCRIPTOR_H
|