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",
|
||||
"compare": "cpp",
|
||||
"concepts": "cpp",
|
||||
"numbers": "cpp"
|
||||
"numbers": "cpp",
|
||||
"filesystem": "cpp",
|
||||
"xstring": "cpp"
|
||||
}
|
||||
}
|
@ -1,16 +1,16 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
|
||||
namespace RenderD7
|
||||
{
|
||||
class StealConsole
|
||||
{
|
||||
public:
|
||||
StealConsole();
|
||||
~StealConsole();
|
||||
std::string GetStdout();
|
||||
private:
|
||||
std::stringstream stolen_stdout;
|
||||
};
|
||||
}
|
||||
|
||||
namespace RenderD7 {
|
||||
class StealConsole {
|
||||
public:
|
||||
StealConsole();
|
||||
~StealConsole();
|
||||
std::string GetStdout();
|
||||
|
||||
private:
|
||||
std::stringstream stolen_stdout;
|
||||
};
|
||||
} // namespace RenderD7
|
Loading…
Reference in New Issue
Block a user