Category : Files from Magazines
Archive   : CUJ9201.ZIP
Filename : 1001024A

 
Output of file : 1001024A contained in archive : CUJ9201.ZIP
//////////////////////////////////////////////////////
// LISTCLAS.H
//
// D_List Class - Similar to list class
// developed for CUJ July, 1990
//
// Dave's List.
//
//////////////////////////////////////////////////////
#ifndef LISTCLAS_H
#define LISTCLAS_H
#include
enum Boolean {false, true};

class D_List {
public:
virtual Boolean at_top()
{ return ((Boolean) (tell() == 0L));}
virtual Boolean at_end() = 0;
virtual Boolean is_empty()
{ return ((Boolean) (total() == 0L)); }
virtual Boolean find(void *key) = 0;
virtual void prev() = 0,
next() = 0,
seek(long where, int start),
top() = 0,
end() = 0,
add() = 0,
replace(void *member) = 0,
remove() = 0;
virtual void *current() = 0;
long virtual total(),
tell() = 0;
void * operator[] (long where)
{ seek(where,SEEK_SET); return current(); }
void * operator[] (void *key)
{ return (find(key) ? current() : NULL); }
};
#endif


  3 Responses to “Category : Files from Magazines
Archive   : CUJ9201.ZIP
Filename : 1001024A

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/