Add direct STL checkpointing

Modified ICG to save the non-canonical name for STLs.  This is typically more readable
because it is shorter.  Added code to the variable server to filter out requests accessing
STLs, because those accesses will not currently work.

refs #206
This commit is contained in:
Alex Lin
2016-04-04 15:07:57 -05:00
parent 0b7e3e2dc9
commit fb7432d096
7 changed files with 36 additions and 11 deletions

View File

@ -251,6 +251,14 @@ unsigned int FieldDescription::getBaseClassOffset() {
return base_class_offset ;
}
void FieldDescription::setNonCanonicalTypeName( std::string in_val ) {
non_canonical_type_name = in_val ;
}
std::string FieldDescription::getNonCanonicalTypeName() {
return non_canonical_type_name ;
}
void FieldDescription::setTypeName( std::string in_val ) {
type_name = in_val ;
}