16 lines
267 B
C++
16 lines
267 B
C++
#ifndef MINDGEN_FUNCS_H_
|
|
#define MINDGEN_FUNCS_H_
|
|
|
|
#include <iostream>
|
|
|
|
#include "MindNode.h"
|
|
|
|
using std::istream;
|
|
using std::ostream;
|
|
|
|
int parse_mindmap(istream& in, MindNode** root);
|
|
|
|
void write_html(ostream& out, const MindNode* root);
|
|
|
|
#endif // MINDGEN_FUNCS_H_
|