OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
notnode.hpp
Go to the documentation of this file.
1 #ifndef CSM_FILTER_NOTNODE_H
2 #define CSM_FILTER_NOTNODE_H
3 
4 #include "unarynode.hpp"
5 
6 namespace CSMFilter
7 {
8  class NotNode : public UnaryNode
9  {
10  public:
11 
12  NotNode (boost::shared_ptr<Node> child);
13 
14  virtual bool test (const CSMWorld::IdTableBase& table, int row,
15  const std::map<int, int>& columns) const;
18  };
19 }
20 
21 #endif
Definition: unarynode.hpp:10
virtual bool test(const CSMWorld::IdTableBase &table, int row, const std::map< int, int > &columns) const
Definition: notnode.cpp:5
NotNode(boost::shared_ptr< Node > child)
Definition: notnode.cpp:3
Definition: idtablebase.hpp:12
Definition: notnode.hpp:8