| 231 | void Type::setBoolean(bool Boolean) { this->Boolean = Boolean; } |
| 232 | |
| 233 | void Type::setGlobalDef(std::shared_ptr<Enum> GlobalDef) { |
| 234 | this->GlobalDef = GlobalDef; |
| 235 | } |
| 236 | |
| 237 | void Type::setUnsigned(bool Unsigned) { this->Unsigned = Unsigned; } |
| 238 |