MLPACK  1.0.7
string_util.hpp
Go to the documentation of this file.
1 
21 #ifndef __MLPACK_CORE_STRING_UTIL_HPP
22 #define __MLPACK_CORE_STRING_UTIL_HPP
23 
24 #include <string>
25 
26 namespace mlpack {
27 namespace util {
28 
31 std::string Indent(std::string input);
32 
33 }; // namespace util
34 }; // namespace mlpack
35 
36 #endif