mirror of
https://github.com/thug1src/thug.git
synced 2025-01-21 21:33:46 +00:00
89 lines
3.2 KiB
C++
89 lines
3.2 KiB
C++
/*****************************************************************************
|
|
** **
|
|
** Neversoft Entertainment. **
|
|
** **
|
|
** Copyright (C) 2000 - All Rights Reserved **
|
|
** **
|
|
******************************************************************************
|
|
** **
|
|
** Project: Core library **
|
|
** **
|
|
** Module: List **
|
|
** **
|
|
** File name: Core\List\LookupTable.cpp **
|
|
** **
|
|
** Created by: 9/22/2000 - rjm **
|
|
** **
|
|
** Description: A Lookuptable **
|
|
** **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Includes **
|
|
*****************************************************************************/
|
|
|
|
#include <core/defines.h>
|
|
#include <core/string/cstring.h>
|
|
#include <core/lookuptable.h>
|
|
|
|
//
|
|
|
|
/*****************************************************************************
|
|
** DBG Information **
|
|
*****************************************************************************/
|
|
|
|
namespace Lst
|
|
{
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
** Externals **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Defines **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Private Types **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Private Data **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Public Data **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Private Prototypes **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Private Functions **
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
** Public Functions **
|
|
*****************************************************************************/
|
|
|
|
/******************************************************************************
|
|
*
|
|
* Function:
|
|
*
|
|
* Description: Default constructor
|
|
*
|
|
* Parameters:
|
|
*
|
|
*****************************************************************************/
|
|
|
|
|
|
} // namespace Lst
|
|
|
|
|
|
|
|
|
|
|