📄 persistentassembly.h
字号:
#ifndef STAIRWAYTOHEAVENPERSISTENTASSEMBLY_H#define STAIRWAYTOHEAVENPERSISTENTASSEMBLY_H#include "assembly.h"#include "persistentProduct.h"class PersistentAssembly : public Assembly, public PersistentProduct{ public: PersistentAssembly(const string& name, const string& assyCode); virtual ~PersistentAssembly(); protected: virtual void writeFields(ostream& s) const; private: virtual void writeHeader(ostream& s) const; virtual void writeFooter(ostream& s) const;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -