//
// 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.
//
// TreeStruct.h --
//
// Author           : Andrew Beach
// Created On       : Wed Jul 12 14:58:00 2017
// Last Modified By : Andrew Beach
// Last Modified On : Fri Jul 14 11:15:00 2017
// Update Count     : 0
//

// Various additions to make the translator for tree structures (hierarchy).
// NOTE: Probably shouldn't be in SymTab.
// NOTE: The name tree struct is temperay, we need the actual name.

#include <list>

class Declaration;

void expand_tree_structs( std::list<Declaration *> & translationUnit );
