| 123456789101112131415161718192021222324 |
- #ifndef DEPTHGUIDE_MESH_ENCODER_H
- #define DEPTHGUIDE_MESH_ENCODER_H
- #include "render/render_mesh.h"
- #include <memory>
- class mesh_encoder {
- public:
- mesh_encoder();
- ~mesh_encoder();
- data_type encode(const mesh_ptr &mesh);
- void clear_cache();
- private:
- struct impl;
- std::unique_ptr<impl> pimpl;
- };
- #endif //DEPTHGUIDE_MESH_ENCODER_H
|