#ifndef VM__hpp #define VM__hpp #include namespace Rice { class VM { public: VM(char * app_name); VM(int argc, char * argv[]); VM(std::vector const & args); ~VM(); void init_stack(); void run(); private: void check_not_initialized() const; void init(int argc, char * argv[]); }; } #endif // VM__hpp