X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2Fmoof%2Fcullable.hh;fp=src%2Fmoof%2Fcullable.hh;h=3f0169a391670dc427bf149296a3d2d704f68a2b;hp=4e4391e3187d64c05017e1bf1a3868add0276d41;hb=574af38ed616d1adfa5e6ce35f67cda1f707f89d;hpb=6c9943707d4f33035830eba0587a61a34eaecbc2 diff --git a/src/moof/cullable.hh b/src/moof/cullable.hh index 4e4391e..3f0169a 100644 --- a/src/moof/cullable.hh +++ b/src/moof/cullable.hh @@ -1,13 +1,11 @@ -/*] Copyright (c) 2009-2010, Charles McGarvey [************************** +/*] Copyright (c) 2009-2011, Charles McGarvey [***************************** **] All rights reserved. * -* vi:ts=4 sw=4 tw=75 -* * Distributable under the terms and conditions of the 2-clause BSD license; * see the file COPYING for a complete text of the license. * -**************************************************************************/ +*****************************************************************************/ #ifndef _MOOF_CULLABLE_HH_ #define _MOOF_CULLABLE_HH_ @@ -21,15 +19,16 @@ namespace moof { +// forward declarations class frustum; /** * Interface for anything that can be culled. */ - class cullable { public: + virtual ~cullable() {} virtual bool is_visible(const frustum& frustum) const