mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
15 lines
341 B
C++
15 lines
341 B
C++
#pragma once
|
|
|
|
#include "BBDocument.h"
|
|
|
|
namespace bbcpp
|
|
{
|
|
|
|
// Helper Functions
|
|
std::string nodeTypeToString(BBNode::NodeType type);
|
|
std::string getIndentString(const unsigned int indent);
|
|
void printChildren(const BBNode& parent, unsigned int indent);
|
|
void printDocument(const BBDocument& doc);
|
|
std::string getRawString(const BBNode& node);
|
|
|
|
} |