1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| #pragma once
|
| #include "../Symbol.h"
| #include <string>
|
| namespace mapfileparser
| {
| struct ClangSymbol
| {
| Symbol symbol;
| int32_t objectFileIndex;
| };
|
| class ClangSymbolParser
| {
| public:
| static ClangSymbol Parse(const std::string& line);
| };
| }
|
|