mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
fb7432d096
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
12 lines
212 B
C++
12 lines
212 B
C++
|
|
#ifndef CHECKPOINT_STL_PROTOS_HH
|
|
#define CHECKPOINT_STL_PROTOS_HH
|
|
|
|
#include <string>
|
|
|
|
// prototype of functions used in checkpoint_stl templates
|
|
|
|
std::string stl_type_name_convert(std::string in_type) ;
|
|
|
|
#endif
|