Apply cpp naming to files
This commit is contained in:
parent
89eec0e329
commit
9d01ba2c8a
73 changed files with 160 additions and 160 deletions
28
Objects/public/primitives/MethodObject.hpp
Normal file
28
Objects/public/primitives/MethodObject.hpp
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#pragma once
|
||||
|
||||
#include "primitives/StringObject.hpp"
|
||||
#include "interpreter/Script.hpp"
|
||||
|
||||
namespace obj {
|
||||
|
||||
struct MethodObject : Object {
|
||||
|
||||
static ObjectType TypeData;
|
||||
|
||||
Script* mScript;
|
||||
|
||||
static void constructor(MethodObject* self);
|
||||
static void copy(MethodObject* self, MethodObject* in);
|
||||
static void destructor(MethodObject* self);
|
||||
static tp::alni save_size(MethodObject* self);
|
||||
static void save(MethodObject* self, ArchiverOut& file_self);
|
||||
static void load(ArchiverIn& file_self, obj::MethodObject* self);
|
||||
|
||||
static void Initialize();
|
||||
static void UnInitialize();
|
||||
|
||||
void compile();
|
||||
|
||||
static MethodObject* create(const std::string& script);
|
||||
};
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue