feat: directory-based resource resolver

This commit is contained in:
maelstrom 2026-06-02 11:27:44 +02:00
commit 656549f039
12 changed files with 223 additions and 11 deletions

View file

@ -0,0 +1,23 @@
#ifndef __FISHBONE_LOGGER_H__
#define __FISHBONE_LOGGER_H__
#include <fishbone/pre.h>
namespace fishbone {
class Logger {
public:
enum class Cause {
INFO,
DEBUG,
WARNING,
ERROR,
CRITICAL,
};
void log(std::string message);
void log(Cause cause, std::string message);
};
} // namespace fishbone
#endif