// ADFOctree.h: interface for the ADFOctree class. // ////////////////////////////////////////////////////////////////////// #ifndef __ADFOCTREE_H__ #define __ADFOCTREE_H__ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 class ADFOctree { public: ADFOctree(); virtual ~ADFOctree(); }; #endif // __ADFOCTREE_H__