.. _program_listing_file_include_gwmodelcuda_StdTelegram.h: Program Listing for File StdTelegram.h ====================================== |exhale_lsh| :ref:`Return to documentation for file ` (``include/gwmodelcuda/StdTelegram.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #include #include #include #include #include #include #include using namespace gwm; class StdTelegram : public Logger { public: explicit StdTelegram() {} ~StdTelegram() {} bool stop() override { return false; } void print(std::string message, LogLevel level, std::string fun_name, std::string file_name) override; void progress(std::size_t current, std::size_t total, std::string fun_name, std::string file_name) override; void progress(double percent, std::string fun_name, std::string file_name) override; };