|
|
int writeGroup(QTextStream & file, Group * Group); | int writeGroup(QTextStream & file, Group * Group); |
int writeShape(QTextStream & file, Shape3D * shape); | int writeShape(QTextStream & file, Shape3D * shape); |
int writeBehavior(QTextStream & file, Behavior * beh); | int writeBehavior(QTextStream & file, Behavior * beh); |
inline void FileUtil::incIndent() { |
inline void incIndent() { |
++m_iIndent; | ++m_iIndent; |
}; | }; |
inline void FileUtil::decIndent() { |
inline void decIndent() { |
--m_iIndent; | --m_iIndent; |
if (m_iIndent < 0) m_iIndent = 0; | if (m_iIndent < 0) m_iIndent = 0; |
}; | }; |
inline void FileUtil::resetIndent() { |
inline void resetIndent() { |
m_iIndent = 0; | m_iIndent = 0; |
}; | }; |
PinEditDoc * p_Doc; | PinEditDoc * p_Doc; |