libStatGen Software
1
|
Public Member Functions | |
virtual SamHeaderRecord * | createCopy () const |
Return a pointer to a newly created header record of the appropriate type that is a copy of this record. |
Definition at line 24 of file SamHeaderPG.h.
SamHeaderRecord * SamHeaderPG::createCopy | ( | ) | const [virtual] |
Return a pointer to a newly created header record of the appropriate type that is a copy of this record.
The newly created record will not be deleted by this class and it is the responsibility of the calling method to handle the deletion. Returns NULL on failure to copy.
Implements SamHeaderRecord.
Definition at line 37 of file SamHeaderPG.cpp.
{ SamHeaderPG* newPG = new SamHeaderPG(); if(newPG == NULL) { std::cerr << "Failed to create a copy of an PG Header Record\n" ; return(NULL); } internalCopy(*newPG); return(newPG); }