C/C++
cprog.asc
Associated article: C Programming
Tags: C/C++
_C PROGRAMMING COLUMN_
by Al Stevens
[LISTING ONE]
// ------------ emblist.h
// a linked list class embedded in the listed class
#ifndef EMBLIST_H
#define EMBLIST_H
class LinkedList;
// --- the linked list entry
class ListEntry {
void *thisentry;
ListEntry *nextentry;
ListEntry *...


