feat: add solver core skeleton
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace fesa::core {
|
||||
|
||||
enum class Severity {
|
||||
info,
|
||||
warning,
|
||||
error
|
||||
};
|
||||
|
||||
struct Diagnostic {
|
||||
Severity severity;
|
||||
std::string code;
|
||||
std::string message;
|
||||
};
|
||||
|
||||
} // namespace fesa::core
|
||||
Reference in New Issue
Block a user