class move_only_test
Overview
#include <utils.h> class move_only_test { public: // construction move_only_test(std::int64_t value); move_only_test(std::string value); move_only_test(const move_only_test&); move_only_test(move_only_test&&); // methods move_only_test& operator = (const move_only_test&); move_only_test& operator = (move_only_test&&); const std::string& value() const; };