| 51 | } |
| 52 | |
| 53 | UUID ComponentData_Impl::versionUUID() const { |
| 54 | OptionalString os = getString(OS_ComponentDataFields::VersionUUID); |
| 55 | OS_ASSERT(os); |
| 56 | return toUUID(*os); |
| 57 | } |
| 58 | |
| 59 | boost::optional<int> ComponentData_Impl::creationTimestamp() const { |
| 60 | return getInt(OS_ComponentDataFields::CreationTimestamp, true); |