| 507 | inline void SetType(const sASTypeInfo& type) { m_type = type; } |
| 508 | |
| 509 | inline int GetFuncID() const { return m_id; } |
| 510 | inline bool IsFuncGlobal() const { return m_global; } |
| 511 | inline void SetFunc(int in_id, bool global) { m_id = in_id; m_global = global; } |
| 512 |