#include "remoting/client/notification/version_range.h"
#include <stdint.h>
#include <limits>
#include "base/check_op.h"
#include "base/logging.h"
namespace remoting {
namespace {
constexpr uint16_t kUnboundMinVersionNumber = …;
constexpr uint16_t kUnboundMaxVersionNumber = …;
}
VersionRange::VersionRange(const std::string& range_spec) { … }
VersionRange::~VersionRange() = default;
bool VersionRange::IsValid() const { … }
bool VersionRange::ContainsVersion(const std::string& version_string) const { … }
}