📄 fileconsolerenderingcontext.h
字号:
// --------------------------------------------------------------------------
// Dingus project - a collection of subsystems for game/graphics applications
// --------------------------------------------------------------------------
#ifndef __FILE_CONSOLE_H
#define __FILE_CONSOLE_H
#include "Console.h"
#include <fstream>
namespace dingus {
class CFileConsoleRenderingContext : public IConsoleRenderingContext {
public:
CFileConsoleRenderingContext( const std::string& fileName );
virtual ~CFileConsoleRenderingContext();
virtual void write( const std::string& message );
private:
std::ofstream mFile;
};
}; // namespace
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -