mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-14 02:50:23 +00:00
git subrepo pull --force tools/ZAPD (#727)
subrepo: subdir: "tools/ZAPD" merged: "4751db5c9" upstream: origin: "https://github.com/zeldaret/ZAPD.git" branch: "master" commit: "4751db5c9" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
This commit is contained in:
parent
77ec4d4916
commit
493bdbc3c6
115 changed files with 16370 additions and 2789 deletions
|
@ -1,8 +1,8 @@
|
|||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
class OutputFormatter
|
||||
{
|
||||
|
@ -18,21 +18,20 @@ private:
|
|||
|
||||
char word[128];
|
||||
char space[128];
|
||||
char *word_p;
|
||||
char *space_p;
|
||||
char* word_p;
|
||||
char* space_p;
|
||||
|
||||
std::string str;
|
||||
|
||||
int write(const char *buf, int count);
|
||||
int write(const char* buf, int count);
|
||||
|
||||
static OutputFormatter *static_instance;
|
||||
static int write_static(const char *buf, int count);
|
||||
static OutputFormatter* static_instance;
|
||||
static int write_static(const char* buf, int count);
|
||||
|
||||
public:
|
||||
OutputFormatter(int tab_size = 4, int default_indent = 4,
|
||||
int line_limit = 120);
|
||||
OutputFormatter(int tab_size = 4, int default_indent = 4, int line_limit = 120);
|
||||
|
||||
int (*static_writer())(const char *buf, int count);
|
||||
int (*static_writer())(const char* buf, int count);
|
||||
|
||||
std::string get_output();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue