mlpack  2.2.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cli_deleter.hpp
Go to the documentation of this file.
1 
12 #ifndef MLPACK_CORE_UTIL_CLI_DELETER_HPP
13 #define MLPACK_CORE_UTIL_CLI_DELETER_HPP
14 
15 namespace mlpack {
16 namespace util {
17 
26 {
27  public:
28  CLIDeleter();
29  ~CLIDeleter();
30 };
31 
32 } // namespace util
33 } // namespace mlpack
34 
35 #endif
Extremely simple class whose only job is to delete the existing CLI object at the end of execution...
Definition: cli_deleter.hpp:25