mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-10 00:20:14 +02:00
18 lines
No EOL
465 B
C++
18 lines
No EOL
465 B
C++
//
|
|
// Created by Sam Gondelman on 7/16/2015
|
|
// 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
|
|
|
|
class InputPlugin;
|
|
|
|
#include <QVector>
|
|
#include <QSharedPointer>
|
|
|
|
using InputPluginPointer = QSharedPointer<InputPlugin>;
|
|
using InputPluginList = QVector<InputPluginPointer>;
|
|
|
|
const InputPluginList& getInputPlugins(); |