#pragma once #include "tree.hpp" #include namespace vxorg { struct VxHeavenItem { std::string name; // True if this item is also a sample bool is_sample; }; using VxHeavenTree = Tree; void parse_into_tree(VxHeavenTree& tree, std::istream& is); }