mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
38 lines
1.2 KiB
//***************************************************************************
|
|
//
|
|
// FileName:
|
|
// $Workfile: ToolLib.h $
|
|
//
|
|
// Author:
|
|
// TOSHIBA [PCS](PSY) Seiichi Nakamura
|
|
// Copyright (c) 1997 TOSHIBA CORPORATION
|
|
//
|
|
// Description:
|
|
//
|
|
//***************************************************************************
|
|
// $Header: /DVD Drivers/Sources/ToolLib/ToolLib.h 2 97/06/26 20:40 Seichan $
|
|
// $Modtime: 97/06/26 20:40 $
|
|
// $Nokeywords:$
|
|
//***************************************************************************
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
// List Item Base CLASS
|
|
//---------------------------------------------------------------------------
|
|
class IMBoardListItem
|
|
{
|
|
public:
|
|
virtual IMBoardListItem* GetNext( void ) PURE;
|
|
virtual void SetNext( IMBoardListItem *Item ) PURE;
|
|
};
|
|
|
|
|
|
//***************************************************************************
|
|
//
|
|
//***************************************************************************
|
|
|
|
|
|
|
|
//***************************************************************************
|
|
// End of
|
|
//***************************************************************************
|