X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fmoof%2Fcullable.hh;h=e3a2bb7345da647d1166b3b1d974a2b6ac089f20;hb=2b36c1e20e90f7a1e97740673adc697c40ce367e;hp=4e4391e3187d64c05017e1bf1a3868add0276d41;hpb=831f04d4bc19a390415ac0bbac4331c7a65509bc;p=chaz%2Fyoink diff --git a/src/moof/cullable.hh b/src/moof/cullable.hh index 4e4391e..e3a2bb7 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_ @@ -17,19 +15,19 @@ * Representation for an object that may or may not be visible. */ - 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