Sha256: f79ba69537ca8d19b05455c695d2d4a9a985db073fbace59f76a6e68c2ef8405
Contents?: true
Size: 561 Bytes
Versions: 16
Compression:
Stored size: 561 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __BEEPS_RUBY_PROCESSOR_H__ #define __BEEPS_RUBY_PROCESSOR_H__ #include <rucy/class.h> #include <rucy/extension.h> #include <beeps/processor.h> RUCY_DECLARE_WRAPPER_VALUE_FROM_TO(Beeps::Processor) namespace Beeps { Rucy::Class processor_class (); // class Beeps::Processor template <typename T> class RubyProcessor : public Rucy::ClassWrapper<T> {}; }// Beeps namespace Rucy { template <> inline Class get_ruby_class<Beeps::Processor> () { return Beeps::processor_class(); } }// Rucy #endif//EOH
Version data entries
16 entries across 16 versions & 1 rubygems