mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 01:45:38 +08:00
AFV initial commit
This commit is contained in:
committed by
Mat Sutcliffe
parent
7030302e73
commit
b5a2f2ad13
24
src/blacksound/sampleprovider/samples.h
Normal file
24
src/blacksound/sampleprovider/samples.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef SAMPLES_H
|
||||
#define SAMPLES_H
|
||||
|
||||
#include "blacksound/blacksoundexport.h"
|
||||
#include "resourcesound.h"
|
||||
|
||||
class BLACKSOUND_EXPORT Samples
|
||||
{
|
||||
public:
|
||||
static Samples &instance();
|
||||
|
||||
ResourceSound crackle() const;
|
||||
ResourceSound click() const;
|
||||
ResourceSound whiteNoise() const;
|
||||
|
||||
private:
|
||||
Samples();
|
||||
|
||||
ResourceSound m_crackle;
|
||||
ResourceSound m_click;
|
||||
ResourceSound m_whiteNoise;
|
||||
};
|
||||
|
||||
#endif // SAMPLES_H
|
||||
Reference in New Issue
Block a user