OpenMW
|
00001 #ifndef CSM_FILTER_ORNODE_H 00002 #define CSM_FILTER_ORNODE_H 00003 00004 #include "narynode.hpp" 00005 00006 namespace CSMFilter 00007 { 00008 class OrNode : public NAryNode 00009 { 00010 public: 00011 00012 OrNode (const std::vector<boost::shared_ptr<Node> >& nodes); 00013 00014 virtual bool test (const CSMWorld::IdTable& table, int row, 00015 const std::map<int, int>& columns) const; 00018 }; 00019 } 00020 00021 #endif