sisi4s
Loading...
Searching...
No Matches
Delete.hpp
Go to the documentation of this file.
1#ifndef DELETE_DEFINED
2#define DELETE_DEFINED
3
5
6namespace sisi4s {
7class Delete : public Algorithm {
8public:
10 Delete(std::vector<Argument> const &argumentList);
11 virtual ~Delete();
15 virtual void run();
19 virtual void dryRun();
20};
21} // namespace sisi4s
22
23#endif
#define ALGORITHM_REGISTRAR_DECLARATION(NAME)
Auxiliary macro declaring the algorithm registrar for the algorithm type of the given name....
Definition Algorithm.hpp:169
Definition Algorithm.hpp:26
Definition Delete.hpp:7
virtual void dryRun()
Frees all associated dry resources of the given tensor.
Definition Delete.cxx:25
virtual void run()
Frees all associated resources of the given tensor.
Definition Delete.cxx:13
virtual ~Delete()
Definition Delete.cxx:11
Definition Algorithm.hpp:10