00001 #ifndef BOUNDED_H_ 00002 #define BOUNDED_H_ 00003 00004 #include "generic/constant.h" 00005 00006 /* FORWARD DECLS */ 00007 class AABB; 00008 00012 class Bounded 00013 { 00014 public: 00015 STRING_CONSTANT(Name, "Bounded"); 00016 00020 virtual const AABB& localAABB () const = 0; 00021 }; 00022 00023 #endif /*BOUNDED_H_*/