Go to the documentation of this file. 1 #ifndef SimTK_SimTKCOMMON_STUDY_GUTS_H_
2 #define SimTK_SimTKCOMMON_STUDY_GUTS_H_
77 explicit Guts(
const String& name=
"<UNNAMED STUDY>",
78 const String& version=
"0.0.0");
81 const String& getName()
const;
82 const String& getVersion()
const;
85 const Study& getStudy()
const;
88 void setOwnerHandle(
Study&);
89 bool hasOwnerHandle()
const;
91 explicit Guts(
class GutsRep* r) : rep(r) { }
93 const GutsRep&
getRep()
const {assert(rep);
return *rep;}
94 GutsRep&
updRep()
const {assert(rep);
return *rep;}
112 #endif // SimTK_SimTKCOMMON_STUDY_GUTS_H_