summaryrefslogtreecommitdiff
path: root/src/parser/memory_mapped_input_buffer.h
blob: a420eccbf7103bf80ee2a8b996b1554c2399ec88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/******************************************************************************
 * Top contributors (to current version):
 *   Morgan Deters, Mathias Preiner, Christopher L. Conway
 *
 * This file is part of the cvc5 project.
 *
 * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
 * in the top-level source directory and their institutional affiliations.
 * All rights reserved.  See the file COPYING in the top-level source
 * directory for licensing information.
 * ****************************************************************************
 *
 * ANTLR input buffer from a memory-mapped file.
 */

#include "cvc5parser_private.h"

#ifndef CVC5__PARSER__MEMORY_MAPPED_INPUT_BUFFER_H
#define CVC5__PARSER__MEMORY_MAPPED_INPUT_BUFFER_H

#include <antlr3input.h>
#include <string>

namespace cvc5 {
namespace parser {

#ifdef __cplusplus
extern "C" {
#endif

pANTLR3_INPUT_STREAM
MemoryMappedInputBufferNew(const std::string& filename);

#ifdef __cplusplus
}/* extern "C" */
#endif

}  // namespace parser
}  // namespace cvc5

#endif /* CVC5__PARSER__MEMORY_MAPPED_INPUT_BUFFER_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback