optoctreeparser
Loading...
Searching...
No Matches
differ.hpp
Go to the documentation of this file.
1
8#pragma once
9
11
12namespace optoctreeparser {
13
17class Differ {
18 public:
31 static std::vector<OptocPatchTree> find_difference(const OptocRoot& old_root,
32 const OptocRoot& new_root);
33
34 private:
41 static bool trees_equal(const OptocTree& a, const OptocTree& b);
42};
43
44} // namespace optoctreeparser
Differ to find difference between two OptocRoot.
Definition differ.hpp:17
static std::vector< OptocPatchTree > find_difference(const OptocRoot &old_root, const OptocRoot &new_root)
Finds the difference between two OptocRoot *.
Basic structures for storing optoctree data.
Definition base_struct.hpp:13
Root of optoctree file.
Definition base_struct.hpp:72
One OctoTree.
Definition base_struct.hpp:97