Sha256: 08bae0aafbcd2669505b42668d67983fa75376d656d0c2680dee978d1fa3300c
Contents?: true
Size: 733 Bytes
Versions: 6
Compression:
Stored size: 733 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __BEEPS_EXCEPTION_H__ #define __BEEPS_EXCEPTION_H__ #include <xot/exception.h> #include <beeps/defs.h> namespace Beeps { class BeepsError : public Xot::XotError { typedef Xot::XotError Super; public: BeepsError (const char* str = NULL); }; class OpenALError : public BeepsError { typedef BeepsError Super; public: OpenALError (const char* str = NULL); }; namespace ErrorFunctions { using namespace Xot::ErrorFunctions; void beeps_error (const char* file, int line, const char* format = NULL, ...); void openal_error (const char* file, int line, const char* format = NULL, ...); }// ErrorFunctions using namespace ErrorFunctions; }// Beeps #endif//EOH
Version data entries
6 entries across 6 versions & 1 rubygems