Sha256: 87b7b9a8412af5e995124758caedec2e4b3744c81e8ad3aa64c4cc6e8f8fedf8
Contents?: true
Size: 444 Bytes
Versions: 26
Compression:
Stored size: 444 Bytes
Contents
#ifndef VM__hpp #define VM__hpp #include <vector> #include "detail/ruby_version_code.hpp" namespace Rice { class VM { public: VM(char * app_name); VM(int argc, char * argv[]); VM(std::vector<const char *> const & args); ~VM(); void init_stack(); void run(); private: void check_not_initialized() const; void init(int argc, char * argv[]); #if RICE__RUBY_VERSION_CODE >= 190 void * node_; #endif }; } #endif // VM__hpp
Version data entries
26 entries across 26 versions & 5 rubygems