ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
deferred_resn
demangler
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
new-env
no_list
persistent-indexer
pthread-emulation
qualifiedEnum
resolv-new
with_gc
Last change
on this file since 9fe33947 was 6b0b624, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago |
change #ifndef to #pragma once
|
-
Property mode
set to
100644
|
File size:
870 bytes
|
Line | |
---|
1 | // -*- Mode: C++ -*-
|
---|
2 | //
|
---|
3 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
4 | //
|
---|
5 | // The contents of this file are covered under the licence agreement in the
|
---|
6 | // file "LICENCE" distributed with Cforall.
|
---|
7 | //
|
---|
8 | // parse.h - Various declarations that are needed so that the generated parser
|
---|
9 | // and lexer compile with C++, and to share information between the
|
---|
10 | // parser, lexer, and driver program
|
---|
11 | //
|
---|
12 | // Author : Richard C. Bilson and Rodolfo G. Esteves
|
---|
13 | // Created On : Sun Dec 16 15:00:49 2001
|
---|
14 | // Last Modified By : Peter A. Buhr
|
---|
15 | // Last Modified On : Sat Jul 22 10:13:09 2017
|
---|
16 | // Update Count : 175
|
---|
17 | //
|
---|
18 |
|
---|
19 | #pragma once
|
---|
20 |
|
---|
21 | int yylex();
|
---|
22 |
|
---|
23 | #include <string>
|
---|
24 | #include <list>
|
---|
25 | #include "token.h"
|
---|
26 |
|
---|
27 | // Local Variables: //
|
---|
28 | // mode: c++ //
|
---|
29 | // tab-width: 4 //
|
---|
30 | // compile-command: "make install" //
|
---|
31 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.