Sha256: 24bf730800072ce4ac9a875f83eba940805794d93825f2be765f3c3fb686785d
Contents?: true
Size: 1.01 KB
Versions: 16
Compression:
Stored size: 1.01 KB
Contents
#include "beeps/ruby/processor.h" #include "beeps/exception.h" #include "defs.h" RUCY_DEFINE_WRAPPER_VALUE_FROM_TO(Beeps::Processor) #define THIS to<Beeps::Processor*>(self) #define CHECK RUCY_CHECK_OBJ(Beeps::Processor, self) static RUCY_DEF_ALLOC(alloc, klass) { Beeps::beeps_error(__FILE__, __LINE__); } RUCY_END static RUCY_DEF0(reset) { CHECK; THIS->reset(); return self; } RUCY_END static RUCY_DEF1(set_input, input) { CHECK; THIS->set_input(input ? to<Beeps::Processor*>(input) : NULL); return input; } RUCY_END static RUCY_DEF0(get_input) { CHECK; return value(THIS->input()); } RUCY_END static Class cProcessor; void Init_beeps_processor () { Module mBeeps = define_module("Beeps"); cProcessor = mBeeps.define_class("Processor"); cProcessor.define_alloc_func(alloc); cProcessor.define_method("reset", reset); cProcessor.define_method("input=", set_input); cProcessor.define_method("input", get_input); } namespace Beeps { Class processor_class () { return cProcessor; } }// Beeps
Version data entries
16 entries across 16 versions & 1 rubygems