13 lines
364 B
C
13 lines
364 B
C
|
#ifndef PARSERUTIL_H
|
||
|
#define PARSERUTIL_H
|
||
|
|
||
|
#include "parsecontext.h"
|
||
|
|
||
|
#include <domain/library/library.h>
|
||
|
|
||
|
std::optional<Library> loadLibraryFromFile(ParseContext * parseContext,
|
||
|
const char* name,
|
||
|
std::ostream& stream);
|
||
|
|
||
|
#endif // PARSERUTIL_H
|