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