refactored namespaces
This commit is contained in:
30
FlippR-Driver/include/output/items/ISound.h
Normal file
30
FlippR-Driver/include/output/items/ISound.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* ISound.h
|
||||
*
|
||||
* Created on: Aug 2, 2018
|
||||
* Author: rhetenor
|
||||
*/
|
||||
|
||||
#ifndef _SRC_OUTPUT_ISOUND_H_
|
||||
#define _SRC_OUTPUT_ISOUND_H_
|
||||
|
||||
namespace flippR_driver
|
||||
{
|
||||
namespace output
|
||||
{
|
||||
namespace items
|
||||
{
|
||||
|
||||
class ISound
|
||||
{
|
||||
public:
|
||||
ISound();
|
||||
virtual ~ISound();
|
||||
|
||||
virtual void play() = 0;
|
||||
};
|
||||
|
||||
}
|
||||
} /* namespace output */
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user