📄 persistentassembly.cpp
字号:
#include "persistentAssembly.h"PersistentAssembly::PersistentAssembly(const string& name, const string& assyCode) :Assembly(name, assyCode), PersistentProduct(name), Product(name){}PersistentAssembly::~PersistentAssembly(){}void PersistentAssembly::writeHeader(ostream& s) const{ s << "<ASSEMBLY>";}void PersistentAssembly::writeFooter(ostream& s) const{ s << "</ASSEMBLY>";}void PersistentAssembly::writeFields(ostream& s) const{ PersistentProduct::writeFields(s); s << "<ASSYCODE>" << getAssyCode() << "</ASSYCODE>";}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -