- "You got another thing comin'" -- Judas Priest

- Add get_request() method to (Dynamic)SubRequest.
- Implement most of ConcreteHistory. It is a fairly complex class,
with some real evilness in it. It should be thouroughly documented 
ASAP.


git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@699 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-07-03 18:52:50 +00:00
parent 68b92db976
commit cb8e8dabc7
13 changed files with 212 additions and 104 deletions

View file

@ -27,6 +27,7 @@ namespace sgpem
{
class SubRequest;
class SerializeVisitor;
class Request;
class Resource;
class SG_DLLEXPORT SubRequest
@ -38,7 +39,7 @@ namespace sgpem
virtual bool operator==(const SubRequest& op2) const = 0;
virtual resource_key_t get_resource() = 0;
virtual resource_key_t get_resource_key() const = 0;
virtual unsigned int get_places() const = 0;
@ -46,6 +47,8 @@ namespace sgpem
virtual int get_queue_position() const = 0;
virtual Request& get_request() = 0;
virtual void serialize(SerializeVisitor& translator) const = 0;
};