Minor cleanup
This commit is contained in:
parent
2bbd2e0d80
commit
797896e002
2 changed files with 3 additions and 3 deletions
|
|
@ -4,7 +4,6 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <eoFunctorStore.h>
|
#include <eoFunctorStore.h>
|
||||||
#include <eoFunctor.h>
|
|
||||||
|
|
||||||
|
|
||||||
/// clears the memory
|
/// clears the memory
|
||||||
|
|
|
||||||
|
|
@ -59,11 +59,12 @@ public:
|
||||||
|
|
||||||
private :
|
private :
|
||||||
|
|
||||||
/// no copying allowed
|
/** no copying allowed */
|
||||||
eoFunctorStore(const eoFunctorStore&);
|
eoFunctorStore(const eoFunctorStore&);
|
||||||
|
|
||||||
/// no copying allowed
|
/** no assignment allowed */
|
||||||
eoFunctorStore operator=(const eoFunctorStore&);
|
eoFunctorStore operator=(const eoFunctorStore&);
|
||||||
|
|
||||||
std::vector<eoFunctorBase*> vec;
|
std::vector<eoFunctorBase*> vec;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue