#ifndef _ViewCell_H__ #define _ViewCell_H__ class Mesh; namespace GtpVisibilityPreprocessor { /** View cell represented as a mesh. */ class ViewCell { public: ViewCell(Mesh *mesh); Mesh *GetMesh() {return mMesh;} protected: Mesh *mMesh; }; }; // GtpVisibilityPreprocessor #endif