//
// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
//
// The contents of this file are covered under the licence agreement in the
// file "LICENCE" distributed with Cforall.
//
// ExceptTranslate.h --
//
// Author           : Andrew Beach
// Created On       : Tus Jun 06 10:13:00 2017
// Last Modified By : Peter A. Buhr
// Last Modified On : Sat Jul 22 09:19:23 2017
// Update Count     : 4
//

#pragma once

#include <list>  // for list

class Declaration;

namespace ControlStruct {
	void translateEHM( std::list< Declaration *> & translationUnit );
	// Converts exception handling structures into their underlying C code.  Translation does use the exception
	// handling header, make sure it is visible wherever translation occurs.
}

// Local Variables: //
// tab-width: 4 //
// mode: c++ //
// compile-command: "make install" //
// End: //
