//
// 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.
//
// InstantiateGeneric.h --
//
// Author           : Aaron B. Moss
// Created On       : Wed Nov 11 14:55:01 2015
// Last Modified By : Aaron B. Moss
// Last Modified On : Wed Nov 11 14:55:01 2015
// Update Count     : 1
//

#ifndef _INSTANTIATEGENERIC_H
#define _INSTANTIATEGENERIC_H

#include <list>
#include "SynTree/SynTree.h"

namespace GenPoly {
	/// Replaces generic structs used outside polymorphic contexts with their concrete instantiations
	void instantiateGeneric( std::list< Declaration* >& translationUnit );
} // namespace GenPoly

#endif // _INSTANTIATEGENERIC_H

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