mirror of
https://github.com/thug1src/thug.git
synced 2025-02-18 10:39:04 +00:00
73 lines
2.8 KiB
C
73 lines
2.8 KiB
C
/*****************************************************************************
|
|
** **
|
|
** Neversoft Entertainment. **
|
|
** **
|
|
** Copyright (C) 2000 - All Rights Reserved **
|
|
** **
|
|
******************************************************************************
|
|
** **
|
|
** Project: <project name> **
|
|
** **
|
|
** Module: <module name> **
|
|
** **
|
|
** File name: <filename>.h **
|
|
** **
|
|
** Created by: 00/00/00 - initials **
|
|
** **
|
|
** Description: <description> **
|
|
** **
|
|
*****************************************************************************/
|
|
|
|
#ifndef __DIR_SUBDIR_FILE_H
|
|
#define __DIR_SUBDIR_FILE_H
|
|
|
|
/*****************************************************************************
|
|
** Includes **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Defines **
|
|
*****************************************************************************/
|
|
|
|
|
|
namespace <module-name>
|
|
{
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
** Class Definitions **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Private Declarations **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Private Prototypes **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Public Declarations **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Public Prototypes **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Inline Functions **
|
|
*****************************************************************************/
|
|
|
|
/******************************************************************/
|
|
/* */
|
|
/* */
|
|
/******************************************************************/
|
|
|
|
} // namespace <module-name>
|
|
|
|
#endif // __DIR_SUBDIR_FILE_H
|
|
|
|
|