diff options
Diffstat (limited to 'aosfxplayer.h')
| -rw-r--r-- | aosfxplayer.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/aosfxplayer.h b/aosfxplayer.h new file mode 100644 index 0000000..8e3a021 --- /dev/null +++ b/aosfxplayer.h @@ -0,0 +1,21 @@ +#ifndef AOSFXPLAYER_H +#define AOSFXPLAYER_H + +#include "bass.h" +#include "aoapplication.h" + +#include <QWidget> + +class AOSfxPlayer +{ +public: + AOSfxPlayer(QWidget *parent, AOApplication *p_ao_app); + +private: + QWidget *m_parent; + AOApplication *ao_app; + + HSTREAM m_stream; +}; + +#endif // AOSFXPLAYER_H |
