From fe8bbd1b61c04e468c6f634130f42826322e902f Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 28 Jul 2016 13:45:44 +1000 Subject: [PATCH] coord: add forward declarations --- Makefile.am | 1 + coord/fwd.hpp | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 coord/fwd.hpp diff --git a/Makefile.am b/Makefile.am index a8742402..f1898f95 100644 --- a/Makefile.am +++ b/Makefile.am @@ -44,6 +44,7 @@ UTIL_FILES = \ colour.cpp \ colour.hpp \ colour.ipp \ + coord/fwd.hpp \ coord/base.hpp \ coord.hpp \ coord/init.hpp \ diff --git a/coord/fwd.hpp b/coord/fwd.hpp new file mode 100644 index 00000000..782805a8 --- /dev/null +++ b/coord/fwd.hpp @@ -0,0 +1,27 @@ +/* + * 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. + * + * Copyright 2016 Danny Robson + */ + +#ifndef __UTIL_COORD_FWD_HPP +#define __UTIL_COORD_FWD_HPP + +namespace util { + template struct colour; + template struct extent; + template struct point; + template struct vector; +} + +#endif