struct DataPackIdentifier¶
Overview¶
Identifies a single datapack. More…
#include <datapack_interface.h> struct DataPackIdentifier { // fields std::string Name; std::string EngineName; std::string Type; // construction DataPackIdentifier(); DataPackIdentifier( const std::string& _name, const std::string& _engineName, const std::string& _type ); DataPackIdentifier( std::string&& _name, std::string&& _engineName, std::string&& _type ); // methods bool operator == (const DataPackIdentifier& rhs) const; bool operator < (const DataPackIdentifier& rhs) const; };