Sha256: ef1879c773588389929fca14f28c74afbea0389dd5bb1d05aaa46220d412258e
Contents?: true
Size: 491 Bytes
Versions: 17
Compression:
Stored size: 491 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __BEEPS_RUBY_SOUND_H__ #define __BEEPS_RUBY_SOUND_H__ #include <rucy/rucy.h> #include <rucy/class.h> #include <rucy/extension.h> #include <rucy/exception.h> #include <beeps/sound.h> namespace Beeps { Rucy::Class sound_class (); // class Beeps::Sound }// Beeps RUCY_DECLARE_VALUE_FROM_TO(Beeps::Sound) namespace Rucy { template <> inline Class get_ruby_class<Beeps::Sound> () { return Beeps::sound_class(); } }// Rucy #endif//EOH
Version data entries
17 entries across 17 versions & 1 rubygems