blob: 0ea4672143f3f4d6109c0bdc6b31423e68061ee3 [file] [log] [blame]
// Copyright 2020 The Chromium OS 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 HERMES_ADAPTOR_FACTORY_INTERFACE_H_
#define HERMES_ADAPTOR_FACTORY_INTERFACE_H_
#include <memory>
#include "hermes/dbus_bindings/org.chromium.Hermes.Manager.h"
namespace hermes {
class Manager;
// Interface for an object factory that creates an adaptor/proxy object
class AdaptorFactoryInterface {
public:
virtual ~AdaptorFactoryInterface() = default;
virtual std::unique_ptr<org::chromium::Hermes::ManagerAdaptor>
CreateManagerAdaptor(Manager* manager) = 0;
};
} // namespace hermes
#endif // HERMES_ADAPTOR_FACTORY_INTERFACE_H_