19 lines
354 B
C++
19 lines
354 B
C++
#include "comdelvalidator.h"
|
|
|
|
namespace domain {
|
|
|
|
ComdelValidator::ComdelValidator(std::vector<FunctionSignature> signatures)
|
|
: signatures(signatures)
|
|
{}
|
|
|
|
std::vector<SourceError> ComdelValidator::getErrors() {
|
|
return errors;
|
|
}
|
|
|
|
void validateLibrary(Library library, ParseContext* parseContext, std::ostream& stream) {
|
|
|
|
}
|
|
|
|
|
|
} // namespace domain
|