//
// 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.
//
// Options.h --
//
// Author           : Andrew Beach
// Created On       : Tue Apr 30 11:36:00 2019
// Last Modified By : Andrew Beach
// Last Modified On : Thr May  2 10:45:00 2019
// Update Count     : 2
//

#pragma once

namespace CodeGen {
	struct Options {
		// External Options: Same thoughout a pass.
		bool pretty;
		bool genC;
		bool lineMarks;
		bool printExprTypes;

		// Internal Options: Changed on some recurisive calls.
		bool anonymousUnused = false;

		Options(bool pretty, bool genC, bool lineMarks, bool printExprTypes) :
			pretty(pretty), genC(genC), lineMarks(lineMarks), printExprTypes(printExprTypes)
		{}
	};
} // namespace CodeGen

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