mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-23 22:29:53 +00:00
dbc266c00b
* begin work on improved pretty printer * update ref * finish pretty printer * force line break for defstate
14 lines
304 B
C++
14 lines
304 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include "common/goos/Object.h"
|
|
#include "common/goos/Reader.h"
|
|
#include "common/goos/Printer.h"
|
|
|
|
namespace pretty_print {
|
|
// main pretty print function
|
|
std::string to_string(const goos::Object& obj, int line_length = 110);
|
|
|
|
} // namespace pretty_print
|