Sha256: 9590cc9590fd911ab0aca283581cc8b4702013a4ae329589d06464284ca3cab0
Contents?: true
Size: 443 Bytes
Versions: 21
Compression:
Stored size: 443 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __BEEPS_RUBY_DEFS_H__ #define __BEEPS_RUBY_DEFS_H__ #include <rucy/extension.h> #include <beeps/ruby/exception.h> #define BEEPS_CATCH \ } \ catch (const Beeps::OpenALError& e) \ { \ RUCY_RAISE(Beeps::openal_error_class(), e.what()); \ } \ catch (const Beeps::BeepsError& e) \ { \ RUCY_RAISE(Beeps::beeps_error_class(), e.what()); #define RUCY_END \ BEEPS_CATCH \ RUCY_DEF_END #endif//EOH
Version data entries
21 entries across 21 versions & 1 rubygems