blob: 26b44711c3063d29f6fea41b94aeee2894444461 [file] [log] [blame]
ethannicholasb3058bd2016-07-01 08:22:01 -07001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SKSL_ERRORREPORTER
9#define SKSL_ERRORREPORTER
10
11#include "SkSLPosition.h"
12
13namespace SkSL {
14
15/**
16 * Interface for the compiler to report errors.
17 */
18class ErrorReporter {
19public:
20 virtual ~ErrorReporter() {}
21
22 virtual void error(Position position, std::string msg) = 0;
23};
24
25} // namespace
26
27#endif