Convert compressor submodule into a normal folder
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#ifndef PRINT_HPP
|
||||
#define PRINT_HPP
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include <cstdarg>
|
||||
|
||||
class Logger {
|
||||
public:
|
||||
static void log(const char* format, ...);
|
||||
static void err(const char* format, ...);
|
||||
};
|
||||
|
||||
#endif // PRINT_HPP
|
||||
Reference in New Issue
Block a user