OpenMW
|
00001 #ifndef CSM_FILTER_LEAFNODE_H 00002 #define CSM_FILTER_LEAFNODE_H 00003 00004 #include <memory> 00005 00006 #include "node.hpp" 00007 00008 namespace CSMFilter 00009 { 00010 class LeafNode : public Node 00011 { 00012 public: 00013 00014 virtual std::vector<int> getReferencedColumns() const; 00017 }; 00018 } 00019 00020 #endif