#include "components/policy/core/common/policy_namespace.h"
#include <tuple>
namespace policy {
PolicyNamespace::PolicyNamespace() { … }
PolicyNamespace::PolicyNamespace(PolicyDomain domain,
const std::string& component_id)
: … { … }
PolicyNamespace::PolicyNamespace(const PolicyNamespace& other)
: … { … }
PolicyNamespace::~PolicyNamespace() { … }
PolicyNamespace& PolicyNamespace::operator=(const PolicyNamespace& other) { … }
bool PolicyNamespace::operator<(const PolicyNamespace& other) const { … }
bool PolicyNamespace::operator==(const PolicyNamespace& other) const { … }
bool PolicyNamespace::operator!=(const PolicyNamespace& other) const { … }
}