RenderConfig: Add serialization, basically for IPC
此提交包含在:
17
gui/renderconfig.cpp
一般檔案
17
gui/renderconfig.cpp
一般檔案
@@ -0,0 +1,17 @@
|
||||
#include "renderconfig.h"
|
||||
|
||||
QDataStream &operator<<(QDataStream &out, const RenderConfig &rc)
|
||||
{
|
||||
out << rc.scaleX;
|
||||
out << rc.scaleY;
|
||||
out << rc.wordsToHighlight;
|
||||
return out;
|
||||
}
|
||||
|
||||
QDataStream &operator>>(QDataStream &in, RenderConfig &rc)
|
||||
{
|
||||
in >> rc.scaleX;
|
||||
in >> rc.scaleY;
|
||||
in >> rc.wordsToHighlight;
|
||||
return in;
|
||||
}
|
||||
新增問題並參考
封鎖使用者