Skip to content
Snippets Groups Projects
Commit 2df0f38f authored by Yun Liu's avatar Yun Liu
Browse files

Remove warnings for samplecache.h

parent 904b5dcb
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,18 @@ class SampleCache {
SampleCache( pa_stream* stream );
~SampleCache();
// Copy Constructor
SampleCache(const SampleCache& rh):_stream(rh._stream) {
_debug("SampleCache copy constructor hasn't been implemented yet. Quit!");
exit(0);
}
// Assignment Operator
SampleCache& operator=( const SampleCache& rh){
_debug("SampleCache assignment operator hasn't been implemented yet. Quit!");
exit(0);
}
bool uploadSample( SFLDataFormat* buffer, size_t size );
bool removeSample( );
bool isSampleCached( );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment