RubbishBin/zip-unzip-search/include/logging.h

32 lines
536 B
C
Raw Permalink Normal View History

2024-10-30 17:23:52 +08:00
//
// Created by ricardo on 22-12-11.
//
#ifndef ZIP_UNZIP_SEARCH_LOGGING_H
#define ZIP_UNZIP_SEARCH_LOGGING_H
#include "string"
class Logging
{
public:
/**
*
* @param info
*/
static void LoggingInfo(const std::string& info);
/**
*
* @param warning
*/
static void LoggingWarning(const std::string& warning);
/**
*
* @param error
*/
static void LoggingError(const std::string& error);
};
#endif //ZIP_UNZIP_SEARCH_LOGGING_H