blob: 693a032b247edaed8091f99f2f8868347bafeb7d [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "osp/public/service_listener.h"
namespace openscreen {
namespace osp {
ServiceListenerError::ServiceListenerError() = default;
ServiceListenerError::ServiceListenerError(Code error,
const std::string& message)
: error(error), message(message) {}
ServiceListenerError::ServiceListenerError(const ServiceListenerError& other) =
default;
ServiceListenerError::~ServiceListenerError() = default;
ServiceListenerError& ServiceListenerError::operator=(
const ServiceListenerError& other) = default;
ServiceListener::Metrics::Metrics() = default;
ServiceListener::Metrics::~Metrics() = default;
ServiceListener::ServiceListener() : state_(State::kStopped) {}
ServiceListener::~ServiceListener() = default;
} // namespace osp
} // namespace openscreen