build: remove generic fwd helpers

It's purpose was to build pointer typedefs for pre-C++11 code, which is
something we never really supported anyway.
This commit is contained in:
Danny Robson 2015-01-19 19:08:46 +11:00
parent 2210db9c4e
commit 6eb2badaef
2 changed files with 0 additions and 28 deletions

View File

@ -34,7 +34,6 @@ UTIL_FILES = \
float.hpp \
fourcc.cpp \
fourcc.hpp \
fwd.hpp \
guid.cpp \
guid.hpp \
hash.cpp \

27
fwd.hpp
View File

@ -1,27 +0,0 @@
/*
* This file is part of libgim.
*
* libgim is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* libgim is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2010 Danny Robson <danny@nerdcruft.net>
*/
#ifndef __UTIL_FWD_HPP
#define __UTIL_FWD_HPP
#define DECLARE_STRUCT(x) struct x
#define DECLARE_CLASS(x) class x
#endif