TinyDomTest2

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef x_TinyDomTest2_h
#define x_TinyDomTest2_h

#include "DetectorDescription/RegressionTest/src/TinyDom2.h"
#include <vector>

/** some tests for TinyDom and TinyDomWalker */
class TinyDomTest2 {
public:
  explicit TinyDomTest2(const TinyDom2& td2);

  unsigned int allNodes(const Node2& n2, std::vector<const AttList2*>& at2);

private:
  const TinyDom2& dom_;
};
#endif