blob: 663d060fbbedd38673ad4bb02fdd3dfe61f43ece [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.
#ifndef OSP_PUBLIC_MDNS_SERVICE_LISTENER_FACTORY_H_
#define OSP_PUBLIC_MDNS_SERVICE_LISTENER_FACTORY_H_
#include <memory>
#include "osp/public/service_listener.h"
namespace openscreen {
class TaskRunner;
namespace osp {
struct MdnsServiceListenerConfig {
// TODO(mfoltz): Populate with actual parameters as implementation progresses.
bool dummy_value = true;
};
class MdnsServiceListenerFactory {
public:
static std::unique_ptr<ServiceListener> Create(
const MdnsServiceListenerConfig& config,
ServiceListener::Observer* observer,
TaskRunner* task_runner);
};
} // namespace osp
} // namespace openscreen
#endif // OSP_PUBLIC_MDNS_SERVICE_LISTENER_FACTORY_H_