mirror of
https://github.com/overte-org/overte.git
synced 2025-07-24 15:25:07 +02:00
23 lines
629 B
C++
23 lines
629 B
C++
//
|
|
// Created by Bradley Austin Davis on 2015/08/08
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include <memory>
|
|
|
|
class DisplayPlugin;
|
|
class InputPlugin;
|
|
class Plugin;
|
|
class PluginContainer;
|
|
class PluginManager;
|
|
|
|
using DisplayPluginPointer = std::shared_ptr<DisplayPlugin>;
|
|
using DisplayPluginList = std::vector<DisplayPluginPointer>;
|
|
using InputPluginPointer = std::shared_ptr<InputPlugin>;
|
|
using InputPluginList = std::vector<InputPluginPointer>;
|
|
|