ADTarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change
on this file since 1fb7bfd was
6d51bd7,
checked in by Thierry Delisle <tdelisle@…>, 5 years ago
|
Fixes to the new templated pass and started on conversions
|
-
Property mode set to
100644
|
File size:
677 bytes
|
Line | |
---|
1 | // |
---|
2 | // Cforall Version 1.0.0 Copyright (C) 2019 University of Waterloo |
---|
3 | // |
---|
4 | // The contents of this file are covered under the licence agreement in the |
---|
5 | // file "LICENCE" distributed with Cforall. |
---|
6 | // |
---|
7 | // Convert.hpp -- |
---|
8 | // |
---|
9 | // Author : Thierry Delisle |
---|
10 | // Created On : Thu May 09 15::37::05 2019 |
---|
11 | // Last Modified By : |
---|
12 | // Last Modified On : |
---|
13 | // Update Count : |
---|
14 | // |
---|
15 | |
---|
16 | #pragma once |
---|
17 | |
---|
18 | #include <list> |
---|
19 | |
---|
20 | #include "AST/Node.hpp" |
---|
21 | |
---|
22 | class Declaration; |
---|
23 | namespace ast { |
---|
24 | class Decl; |
---|
25 | }; |
---|
26 | |
---|
27 | std::list< Declaration * > convert( const std::list< ast::ptr< ast::Decl > > & translationUnit ); |
---|
28 | std::list< ast::ptr< ast::Decl > > convert( const std::list< Declaration * > & translationUnit ); |
---|
Note: See
TracBrowser
for help on using the repository browser.