#include "../include/odhtdb/DataView.hpp" #include namespace odhtdb { bool DataView::operator == (const DataView &other) const { return size == other.size && memcmp(data, other.data, size) == 0; } bool DataView::operator != (const DataView &other) const { return !operator==(other); } }