mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-26 10:02:13 -04:00
30 lines
549 B
C++
30 lines
549 B
C++
/*
|
|
* @file VecMap.hpp
|
|
* @author Robert Borzecki (robert.borzecki@mudita.com)
|
|
* @date 6 cze 2019
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
#ifndef MODULE_GUI_GUI_CORE_VECMAP_HPP_
|
|
#define MODULE_GUI_GUI_CORE_VECMAP_HPP_
|
|
|
|
#include "ImageMap.hpp"
|
|
|
|
namespace gui {
|
|
|
|
/*
|
|
*
|
|
*/
|
|
class VecMap: public ImageMap {
|
|
public:
|
|
VecMap();
|
|
VecMap( uint16_t w, uint16_t h, uint8_t* data );
|
|
~VecMap();
|
|
gui::Status load( uint8_t* data, uint32_t size=0 ) override;
|
|
};
|
|
|
|
} /* namespace gui */
|
|
|
|
#endif /* MODULE_GUI_GUI_CORE_VECMAP_HPP_ */
|