Functions | |
bool | AddFrameType (const std::string &frametype, const std::string &matrix) |
add new frame type or change existing frame type of the entity | |
bool | AddMatrixType (const std::string &matrixtype, const std::string &colnames) |
define a new or redefine an existing matrix type for the entity. | |
int | PrintTypes () |
const std::string & | GetTypeString () const |
bool | SetTypeString (const std::string &TypeString) |
|
add new frame type or change existing frame type of the entity
the description is added to the file with WriteTypes() when the entity is opened for wrinting.Therefore, type descriptors have to be added to the entity before the file is opened. AddFrameType() must be used after Easdif::SDIFEntity::AddMatrixType()
entity.AddFrameType("1NEW", "1NEW NewMatrix; 1FQ0 New1FQ0"); |
|
define a new or redefine an existing matrix type for the entity.
The type description is added to the entity when the entity is opened for writing. Therefore, type descriptors have to be added to the entity before the file is opened. AddMatrixType() must be used before Easdif::SDIFEntity::AddFrameType()
entity.AddMatrixType("1NEW", "amplitude, phase"); |
|
Print the SdifStringT* which have the types definitions of the frames and matrix |
|
return a string containing the user defined types of the file that is stored in the frame "1TYP". return Type string |
|
Set the user defined frame types in the frame "1TYP" for the current file to the argument string
|