- Hide cctors for singletons

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@644 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-06-21 09:15:41 +00:00
parent 383889a203
commit 77e61e0b91
2 changed files with 4 additions and 0 deletions

View File

@ -89,6 +89,8 @@ namespace sgpem
protected:
History(); //private constructor.
History(const History&);
History& operator=(const History&);
private:
int _total_time_elapsed;

View File

@ -62,6 +62,8 @@ namespace sgpem
private:
PoliciesGatekeeper(); //private constructor.
PoliciesGatekeeper(const PoliciesGatekeeper&);
PoliciesGatekeeper& operator=(const PoliciesGatekeeper&);
// Deactivates active policies managed by the specified manager.
void deactivate_policies(PolicyManager* manager);