#include <memory>


struct MOImpl;

class MeshedObject {
    std::unique_ptr<MOImpl> impl;
	
    ~MeshedObject() = default;
};

int main() {
	
	return 0;
}

