auditing performed, removed using added minimal documentation --gv

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@1217 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
jinx 2006-09-17 01:05:59 +00:00
parent dd768861b0
commit caa067c4c6
1 changed files with 21 additions and 0 deletions

View File

@ -37,8 +37,29 @@ namespace sgpem
StaticRequest(StaticThread* thread, unsigned int instant);
~StaticRequest();
/**
\brief Returns the instant at witch the request was made
\returns an unsigned int denoting the instant
*/
unsigned int get_instant() const;
/**
\brief Sets the instant at witch the request was made
\param instant unsigned int denoting the instant at witch the request was made
*/
unsigned int set_instant(unsigned int instant);
/**
\brief Returns the thread that made the request
\returns StaticThread that made a request
*/
StaticThread& get_thread();
private: