summaryrefslogtreecommitdiff
path: root/source/modules/asura-openal/Audio/SoundDecoder.h
blob: c149d6fa7c290710ccc817a3caa5bde76bf3dd5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef __ASURA_ENGINE_SOUND_DECODER_H__
#define __ASURA_ENGINE_SOUND_DECODER_H__

#include <asura-utils/IO/DataBuffer.h>

#include "sound.h"

namespace AsuraEngine
{
	namespace Audio
	{

		///
		/// Ƶļ
		/// 
		class SoundDecoder
		{
		public:

			SoundDecoder();
			virtual ~SoundDecoder();

			virtual Sound* Decode(const AEIO::DataBuffer* db);

		};

	}
}

#endif