Standarts of LLVM
This commit is contained in:
parent
20c3a525c8
commit
62fa5ede9d
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@ -60,6 +60,8 @@
|
|||||||
"cuchar": "cpp",
|
"cuchar": "cpp",
|
||||||
"compare": "cpp",
|
"compare": "cpp",
|
||||||
"concepts": "cpp",
|
"concepts": "cpp",
|
||||||
"numbers": "cpp"
|
"numbers": "cpp",
|
||||||
|
"filesystem": "cpp",
|
||||||
|
"xstring": "cpp"
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,16 +1,16 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <string>
|
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
namespace RenderD7
|
|
||||||
{
|
namespace RenderD7 {
|
||||||
class StealConsole
|
class StealConsole {
|
||||||
{
|
public:
|
||||||
public:
|
|
||||||
StealConsole();
|
StealConsole();
|
||||||
~StealConsole();
|
~StealConsole();
|
||||||
std::string GetStdout();
|
std::string GetStdout();
|
||||||
private:
|
|
||||||
|
private:
|
||||||
std::stringstream stolen_stdout;
|
std::stringstream stolen_stdout;
|
||||||
};
|
};
|
||||||
}
|
} // namespace RenderD7
|
Loading…
Reference in New Issue
Block a user