From 68ee7799a4eeb4148cd4628113ebf9ea3f94a211 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Sat, 7 Oct 2017 10:31:04 +0200 Subject: Make all inputs use the same interface --- src/InputInterface.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/InputInterface.h (limited to 'src/InputInterface.h') diff --git a/src/InputInterface.h b/src/InputInterface.h new file mode 100644 index 0000000..739ca3f --- /dev/null +++ b/src/InputInterface.h @@ -0,0 +1,34 @@ +/* ------------------------------------------------------------------ + * Copyright (C) 2017 Matthias P. Braendli + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. + * See the License for the specific language governing permissions + * and limitations under the License. + * ------------------------------------------------------------------- + */ +/*! \section Input intefrace definition + * + * This describes the interface all inputs must implement. + */ + +#pragma once + +#include +#include + +class InputInterface { + public: + /*! Open the input interface. In case of failure, throws a + * runtime_error. + */ + virtual void prepare(void) = 0; +}; -- cgit v1.2.3