blob: 8bec7d22352e2f20e6071e39ee2a27a937579128 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <string>
namespace ovdl {
struct ParseData {
const std::string production_name;
const unsigned int context_start_line;
const unsigned int context_start_column;
};
}
|