class EE::Graphics::ResourceKey

Immutable semantic lookup key. Catalog equality always compares the complete key value.

#include <resource.hpp>

class ResourceKey {
public:
    // construction

    ResourceKey();
    ResourceKey(std::string value);

    // methods

    const std::string& value() const;
    bool empty() const;
    bool operator==(const ResourceKey& other) const;
    bool operator!=(const ResourceKey& other) const;
};