#ifndef __Syndicate_Data_Raw_h__ #define __Syndicate_Data_Raw_h__ #include "Syndicate/Data/File.h" #include "Syndicate/Data/Block.h" namespace Syndicate { namespace Data { class Raw : public File { public: Raw(void) : File(reinterpret_cast(&_data)) {} ~Raw(void) {}; template void get(unsigned id, unsigned width, unsigned height, TColors *pixels, unsigned pitch, const TColors *colors = Colors::_default) const; private: uint8_t *_data; }; } } #endif /* __Syndicate_Data_Raw_h__ */ // Local Variables: // mode: C++ // End: