You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
190 B

  1. // cotire example project main
  2. #include <string>
  3. #include "example.h"
  4. #include "log.h"
  5. int main(int argc, char** argv)
  6. {
  7. std::string msg = example::get_message();
  8. logging::info(msg);
  9. }