summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-utils/io/decoded_data.cpp
blob: 358a7a59f988aee1ac0f8fa7807c2c09b0d790ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "../exceptions/exception.h"

#include "decoded_data.h"

namespace AsuraEngine
{
	namespace IO
	{

		DecodedData::DecodedData(const DataBuffer& databuffer)
		{
			Decode(databuffer);
		}

		DecodedData::~DecodedData()
		{

		}

	}
}