Generate STL functions only when requested

Remove STL prototypes. They don't appear to be necessary anymore.
Refs #427
This commit is contained in:
Derek Bankieris
2017-05-16 15:29:02 -05:00
parent d417b1bdf1
commit 353905c1ed
5 changed files with 49 additions and 69 deletions

View File

@ -398,6 +398,26 @@ unsigned int FieldDescription::getIO() {
return io ;
}
unsigned int FieldDescription::getChkpntIO() {
return io >> 2 & 3 ;
}
bool FieldDescription::isWriteable() {
return io & 1;
}
bool FieldDescription::isReadable() {
return io & 2;
}
bool FieldDescription::isCheckpointable() {
return io & 4;
}
bool FieldDescription::isRestorable() {
return io & 8;
}
std::string FieldDescription::getDescription() {
return description ;
}