-
Notifications
You must be signed in to change notification settings - Fork 1
/
ListItem.h
23 lines (19 loc) · 957 Bytes
/
ListItem.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/***********************************************************************************************
* 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. *
***********************************************************************************************/
#pragma once
class ListItem
{
public:
ListItem *next;
ListItem *prev;
// int index;
ListItem(void);
~ListItem(void);
virtual void Virtual(void);
};