Vuo 2.4.4
Loading...
Searching...
No Matches
VuoClangIssues.hh
Go to the documentation of this file.
1
10#pragma once
11
16{
17public:
21 typedef struct
22 {
23 string path;
24 int line;
25 int column;
26 clang::DiagnosticsEngine::Level level;
27 string message;
28 } Issue;
29
30 void addIssue(const string &location, clang::DiagnosticsEngine::Level level, const string &message);
31 string getDescription(const string &lineBreak);
32 bool isEmpty(void);
33 bool hasErrors(void);
34
35private:
36 vector<Issue> issues;
37};