summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-utils/io/decoded_data.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/libs/asura-lib-utils/io/decoded_data.cpp')
-rw-r--r--source/libs/asura-lib-utils/io/decoded_data.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/source/libs/asura-lib-utils/io/decoded_data.cpp b/source/libs/asura-lib-utils/io/decoded_data.cpp
new file mode 100644
index 0000000..b208455
--- /dev/null
+++ b/source/libs/asura-lib-utils/io/decoded_data.cpp
@@ -0,0 +1,20 @@
+#include "DecodedData.h"
+#include "Exceptions/Exception.h"
+
+namespace AsuraEngine
+{
+ namespace IO
+ {
+
+ DecodedData::DecodedData(const DataBuffer* databuffer)
+ {
+ Decode(databuffer);
+ }
+
+ DecodedData::~DecodedData()
+ {
+
+ }
+
+ }
+}