FRX SDK Documentation 2025 SP0
Loading...
Searching...
No Matches
CdlList.h
Go to the documentation of this file.
1#pragma once
2
3//
4// (C) Copyright 2005-2024 by Graebert GmbH.
5//
6// Permission to use, copy, modify, and distribute this software in
7// object code form for any purpose and without fee is hereby granted,
8// provided that the above copyright notice appears in all copies and
9// that both that copyright notice and the limited warranty and
10// restricted rights notice below appear in all supporting
11// documentation.
12//
13// GRAEBERT PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
14// GRAEBERT SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
15// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. GRAEBERT GMBH
16// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
17// UNINTERRUPTED OR ERROR FREE.
18
19class CdlNode;
20
22{
23public:
24 CdlNode * AddHead(void *);
25 CdlNode * AddTail(void *);
26 CdlNode * Find(void *);
27 int GetCount(void)const ;
28 void * GetAt( CdlNode *);
29 void * GetNext( CdlNode * &);
30 void * GetPrev( CdlNode * &);
31 void * RemoveHead(void);
32 void * RemoveTail(void);
33 void Del(void);
34 void InsertAfter( CdlNode *,void *);
35 void InsertBefore( CdlNode *,void *);
36 void RemoveAt( CdlNode *);
37
38};
void * GetPrev(CdlNode *&)
void * GetNext(CdlNode *&)
void InsertAfter(CdlNode *, void *)
void * RemoveTail(void)
CdlNode * AddTail(void *)
CdlNode * AddHead(void *)
int GetCount(void) const
void Del(void)
void * GetAt(CdlNode *)
void InsertBefore(CdlNode *, void *)
CdlNode * Find(void *)
void * RemoveHead(void)
void RemoveAt(CdlNode *)