mirror of
https://github.com/nasa/trick.git
synced 2025-06-21 08:29:39 +00:00
Generate STL functions only when requested
Remove STL prototypes. They don't appear to be necessary anymore. Refs #427
This commit is contained in:
@ -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 ;
|
||||
}
|
||||
|
Reference in New Issue
Block a user