-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathListItem.cpp
27 lines (20 loc) · 961 Bytes
/
ListItem.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/***********************************************************************************************
* OpenGL Window and Animation Library (formerly the Open Art Engine) *
***********************************************************************************************
* This software is copyrighted software. Use of this code is given only with permission to *
* parties who have been granted such permission by its author, Herbert Elwood Gilliland III *
***********************************************************************************************
* Copyright (c) 2010 Herbert Elwood Gilliland III ; All rights reserved. *
***********************************************************************************************/
#include "macros.h"
#include "ListItem.h"
ListItem::ListItem(void)
{
next=prev=null;
}
ListItem::~ListItem(void)
{
}
void ListItem::Virtual(void)
{
}