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:
parent
dd768861b0
commit
caa067c4c6
|
@ -37,8 +37,29 @@ namespace sgpem
|
||||||
StaticRequest(StaticThread* thread, unsigned int instant);
|
StaticRequest(StaticThread* thread, unsigned int instant);
|
||||||
~StaticRequest();
|
~StaticRequest();
|
||||||
|
|
||||||
|
/**
|
||||||
|
\brief Returns the instant at witch the request was made
|
||||||
|
|
||||||
|
|
||||||
|
\returns an unsigned int denoting the instant
|
||||||
|
|
||||||
|
*/
|
||||||
unsigned int get_instant() const;
|
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);
|
unsigned int set_instant(unsigned int instant);
|
||||||
|
/**
|
||||||
|
\brief Returns the thread that made the request
|
||||||
|
|
||||||
|
|
||||||
|
\returns StaticThread that made a request
|
||||||
|
|
||||||
|
*/
|
||||||
StaticThread& get_thread();
|
StaticThread& get_thread();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in New Issue