#ifndef COMPONENTS_SERVICES_STORAGE_INDEXED_DB_LOCKS_PARTITIONED_LOCK_ID_H_
#define COMPONENTS_SERVICES_STORAGE_INDEXED_DB_LOCKS_PARTITIONED_LOCK_ID_H_
#include <iosfwd>
#include <string>
namespace content {
struct PartitionedLockId { … };
std::ostream& operator<<(std::ostream& out, const PartitionedLockId& range);
bool operator<(const PartitionedLockId& x, const PartitionedLockId& y);
bool operator==(const PartitionedLockId& x, const PartitionedLockId& y);
bool operator!=(const PartitionedLockId& x, const PartitionedLockId& y);
}
#endif