source: GTP/trunk/App/Demos/Vis/CHC_revisited/CHCPlusPlusTraverser.h @ 2767

Revision 2767, 474 bytes checked in by mattausch, 16 years ago (diff)
Line 
1#ifndef __CHCPLUSPLUSTRAVERSER_H
2#define __CHCPLUSPLUSTRAVERSER_H
3
4#include "RenderTraverser.h"
5
6
7namespace CHCDemo
8{
9
10/** Class implementing traversal using the CHC++ algorithm.
11*/
12class CHCPlusPlusTraverser: public RenderTraverser
13{
14public:
15       
16        CHCPlusPlusTraverser();
17        //~CHCPlusPlusTraverser();
18
19protected:
20        /** Traverses and renders the scene with the specified method
21        */
22        virtual void Traverse();
23};
24
25}
26
27
28
29#endif // __CHCPLUSPLUSTRAVERSER_H
Note: See TracBrowser for help on using the repository browser.