summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/image/image_decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/modules/asura-core/image/image_decoder.h')
-rw-r--r--source/modules/asura-core/image/image_decoder.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/source/modules/asura-core/image/image_decoder.h b/source/modules/asura-core/image/image_decoder.h
deleted file mode 100644
index 30e65d3..0000000
--- a/source/modules/asura-core/image/image_decoder.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef __ASURA_ENGINE_IMAGE_DECODER_H__
-#define __ASURA_ENGINE_IMAGE_DECODER_H__
-
-#include <asura-utils/io/data_buffer.h>
-
-#include "image_data.h"
-
-namespace_begin(AsuraEngine)
-namespace_begin(Image)
-
-ASURA_ABSTRACT class ImageDecoder
-{
-public:
-
- ImageDecoder() {};
- virtual ~ImageDecoder() {};
-
- ///
- /// жڴǷñdecoderѹ
- ///
- virtual bool CanDecode(AEIO::DataBuffer& input) = 0;
-
- ///
- /// һڴ棬һѹImage dataѹʧܷnullptr
- ///
- virtual void Decode(AEIO::DataBuffer& input, ImageData& target) = 0;
-
-};
-
-namespace_end
-namespace_end
-
-#endif \ No newline at end of file