Last change
on this file since 7846f91 was c92bdcc, checked in by Andrew Beach <ajbeach@…>, 17 months ago |
Updated the rest of the names in src/ (except for the generated files).
|
-
Property mode
set to
100644
|
File size:
731 bytes
|
Rev | Line | |
---|
[0c730d9] | 1 | //
|
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2016 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 | //
|
---|
[c92bdcc] | 7 | // ExceptDecl.hpp -- Handles declarations of exception types.
|
---|
[0c730d9] | 8 | //
|
---|
| 9 | // Author : Henry Xue
|
---|
| 10 | // Created On : Tue Jul 20 04:10:50 2021
|
---|
[6a896b0] | 11 | // Last Modified By : Andrew Beach
|
---|
| 12 | // Last Modified On : Tue Jul 12 15:49:00 2022
|
---|
| 13 | // Update Count : 2
|
---|
[0c730d9] | 14 | //
|
---|
| 15 |
|
---|
| 16 | #pragma once
|
---|
| 17 |
|
---|
[6a896b0] | 18 | namespace ast {
|
---|
| 19 | class TranslationUnit;
|
---|
| 20 | }
|
---|
| 21 |
|
---|
[0c730d9] | 22 | namespace ControlStruct {
|
---|
[539a8c8] | 23 |
|
---|
[11df881] | 24 | /// Unfold exception declarations into raw structure declarations.
|
---|
| 25 | /// Also builds vtable declarations and converts vtable types.
|
---|
| 26 | void translateExcept( ast::TranslationUnit & translationUnit );
|
---|
[539a8c8] | 27 |
|
---|
[0c730d9] | 28 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.