- Audited schedulable.hh

- Removed holt_graph.* since they were unused
- Updated makefile accordingly


git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@1227 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
matrevis 2006-09-17 13:44:17 +00:00
parent 449d1cadad
commit b976aaaa34
6 changed files with 187 additions and 166 deletions

View file

@ -36,18 +36,31 @@
namespace sgpem
{
class PythonCPUPolicy;
class PythonCPUPolicyManager;
/** \brief A specialization of abstract class Policy
Implements the Policy abstract class specified in the backend component to allow
user-written Python policies to run.
This class represents a policy written in Python. Its methods interact with Python interpreter.
See the documentation of class Policy for more detailed informations.
*/
class PythonCPUPolicy;
class PythonCPUPolicyManager;
class SG_DLLEXPORT PythonCPUPolicy : public CPUPolicy
{
public:
/// \brief Constructor taking the name of the policy.
///
/// Constructor taking the name of the policy.
///
/// \param name the name of the policy
PythonCPUPolicy(const char* name) throw(MalformedPolicyException);
/// \brief Standard virtual destructor
///
virtual ~PythonCPUPolicy();
/**