comparison deps/Platinum/ThirdParty/Neptune/Source/System/Null/NptNullQueue.cpp @ 0:3425707ddbf6

Initial import (hopefully this mercurial stuff works...)
author fraserofthenight
date Mon, 06 Jul 2009 08:06:28 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3425707ddbf6
1 /*****************************************************************
2 |
3 | Neptune - Queue :: Null Implementation
4 |
5 | (c) 2001-2002 Gilles Boccon-Gibod
6 | Author: Gilles Boccon-Gibod (bok@bok.net)
7 |
8 ****************************************************************/
9
10 /*----------------------------------------------------------------------
11 | includes
12 +---------------------------------------------------------------------*/
13 #include "NptConfig.h"
14 #include "NptTypes.h"
15 #include "NptQueue.h"
16 #include "NptDebug.h"
17
18 /*----------------------------------------------------------------------
19 | NPT_GenericQueue::CreateInstance
20 +---------------------------------------------------------------------*/
21 NPT_GenericQueue*
22 NPT_GenericQueue::CreateInstance(NPT_Cardinal max_items)
23 {
24 NPT_ASSERT(0);
25 return NULL;
26 }
27
28
29
30