utils.h 632 B

1234567891011121314151617181920212223242526
  1. #ifndef UTILS_H
  2. #define UTILS_H
  3. #include <fstream>
  4. #include <functional>
  5. #include <string.h>
  6. #include <string>
  7. // utility functions go here
  8. bool replace(std::string &str, const std::string &from, const std::string &to);
  9. bool replace(std::string &str, const char *from, const char *to);
  10. bool file_exists(const std::string &name);
  11. bool file_exists(const char *name);
  12. void string_toupper(std::string &str);
  13. // logger access
  14. extern std::function<std::ofstream &(void)> get_logger;
  15. extern std::function<void(void)> cls_display_starfield;
  16. // configuration settings access
  17. #include "yaml-cpp/yaml.h"
  18. extern YAML::Node config;
  19. #endif