Sha256: e2fa3fa4cfc86125a3f54c957b6efb92393f33e8f6774bf5666ef19527c59d84
Contents?: true
Size: 441 Bytes
Versions: 18
Compression:
Stored size: 441 Bytes
Contents
// -*- c++ -*- #pragma once #ifndef __BEEPS_SOUND_H__ #define __BEEPS_SOUND_H__ #include <xot/pimpl.h> #include <beeps/defs.h> namespace Beeps { class Processor; class Sound { public: Sound (); Sound (Processor* processor, float seconds); ~Sound (); void play (); operator bool () const; bool operator ! () const; struct Data; Xot::PSharedImpl<Data> self; };// Sound }// Beeps #endif//EOH
Version data entries
18 entries across 18 versions & 1 rubygems