vxorg/vxheaven_parse.hpp

16 lines
312 B
C++
Raw Normal View History

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