mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-15 22:08:47 +00:00
32 lines
541 B
C++
32 lines
541 B
C++
#ifndef DIAGNOSTIC_H
|
|
#define DIAGNOSTIC_H
|
|
|
|
#include <string>
|
|
#include <iosfwd>
|
|
#include "location.hh"
|
|
|
|
class Diagnostic
|
|
{
|
|
public:
|
|
enum Severity
|
|
{
|
|
warning,
|
|
error,
|
|
fatalError
|
|
};
|
|
|
|
Diagnostic();
|
|
Diagnostic(Severity sev, std::string msg, yy::location loc);
|
|
|
|
private:
|
|
Severity severity;
|
|
std::string message;
|
|
yy::location location;
|
|
|
|
friend std::ostream& operator<<(std::ostream&, const Diagnostic&);
|
|
};
|
|
|
|
std::ostream& operator<<(std::ostream&, const Diagnostic&);
|
|
|
|
#endif // DIAGNOSTIC_H
|