LIST.H

//////////////////////////////////////////////////////////////////////////////// 
// list.h
//
// Copyright (C) 1987-1997 By Microsoft Corp. All rights reserved.
// Copyright (C) 1997 Metawise Computing, Inc. All rights reserved.
//
////////////////////////////////////////////////////////////////////////////////


#ifndef _SLIST_H_
#define _SLIST_H_

class CListItem
{
public:
CListItem ();

virtual void FreeData ();

protected:
CListItem* m_pNext;
};

class CList
{
public:
CList ();

protected:
int m_nCount;// #items in list
CListItem* m_pHead;
CListItem* m_pTail;
};

#endif // _SLIST_H_