Developer/CppFileTemplate

/****************************************************************************/
/// @file    <FILENAME>
/// @author  <AUTHOR'S NAME>
/// @date    <FILE CREATION DATE>
/// @version $Id: $
///
/// <A BRIEF DESCRIPTION OF THE FILE'S CONTENTS>
/****************************************************************************/
// SUMO, Simulation of Urban MObility; see http://sumo.sourceforge.net/
// Copyright (C) 2001-2011 DLR (http://www.dlr.de/) and contributors
/****************************************************************************/
//
//   This program is free software; you can redistribute it and/or modify
//   it under the terms of the GNU General Public License as published by
//   the Free Software Foundation; either version 2 of the License, or
//   (at your option) any later version.
//
/****************************************************************************/

// ===========================================================================
// included modules
// ===========================================================================
#ifdef _MSC_VER
#include <windows_config.h>
#else
#include <config.h>
#endif

...

#ifdef CHECK_MEMORY_LEAKS
#include <foreign/nvwa/debug_new.h>
#endif

// ===========================================================================
// static member definitions
// ===========================================================================
... <LEAVE SECTION OUT IF EMPTY>

// ===========================================================================
// member method definitions
// ===========================================================================
// ---------------------------------------------------------------------------
// Class::Subclass - methods <LEAVE OUT IF METHODS ARE OF ONE CLASS ONLY>
// ---------------------------------------------------------------------------
...

/****************************************************************************/

This page was last modified on 8 September 2011, at 14:50.