| 134 | } |
| 135 | |
| 136 | uint32_t AFClassMeta::GetIndex(const std::string& name) const |
| 137 | { |
| 138 | auto iter = name_index_list_.find(name); |
| 139 | if (iter == name_index_list_.end()) |
| 140 | { |
| 141 | return NULL_INT; |
| 142 | } |
| 143 | |
| 144 | return iter->second; |
| 145 | } |
| 146 | |
| 147 | bool AFClassMeta::IsEntityMeta() const |
| 148 | { |