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