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