| 8 | namespace mdf { |
| 9 | |
| 10 | void IFileHistory::SetFhComment(const FhComment &fh_comment) { |
| 11 | if (IMetaData* meta_data = CreateMetaData(); |
| 12 | meta_data != nullptr ) { |
| 13 | meta_data->XmlSnippet(fh_comment.ToXml()); |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | void IFileHistory::GetFhComment(FhComment &fh_comment) const { |
| 18 | if (const IMetaData* meta_data = MetaData(); |