diff options
author | chai <chaifix@163.com> | 2019-03-31 19:59:58 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2019-03-31 19:59:58 +0800 |
commit | 72bad342ad75294ae85aac8b2e2e7bea54193c15 (patch) | |
tree | 79079bc2ae800b97b13169a3be34aea0faa7428b /source/modules/asura-utils/io/renewable.h | |
parent | fb7ae1149a80a22c77014d0ece33f6f4b965b631 (diff) |
*misc
Diffstat (limited to 'source/modules/asura-utils/io/renewable.h')
-rw-r--r-- | source/modules/asura-utils/io/renewable.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/source/modules/asura-utils/io/renewable.h b/source/modules/asura-utils/io/renewable.h new file mode 100644 index 0000000..769bdf6 --- /dev/null +++ b/source/modules/asura-utils/io/renewable.h @@ -0,0 +1,38 @@ +#ifndef __ASURA_ENGINE_RENEWABLE_H__ +#define __ASURA_ENGINE_RENEWABLE_H__ + +#include "../scripting/portable.hpp" + +#include "decoded_data.h" + +namespace AsuraEngine +{ + namespace IO + { + + /// + /// ¹ݽṹͼƬƵ֣ӽݿֱӹڱ༭ + /// ¹handleֵı䲻߱ƻԣڲıhandleԴ + /// + ASURA_ABSTRACT class Renewable + { + public: + Renewable(); + virtual ~ Renewable(); + + /// + /// ̳RenewableҪṩһRefresh + /// + /// Effective C++09.Ӧýֹڹ캯еvirtualRefresh + /// ӹ캯г룬ҪֶRefresh + /// + virtual bool Refresh(AEIO::DecodedData* decode_data) = 0; + + }; + + } +} + +namespace AEIO = AsuraEngine::IO; + +#endif
\ No newline at end of file |