Rudiments
/home/dmuse/src/rudiments/include/rudiments/private/linkedlistnode.h
00001 // Copyright (c) 2003 David Muse
00002 // See the COPYING file for more information
00003 
00004         protected:
00005                 datatype                        data;
00006                 linkedlistnode<datatype>        *next;
00007                 linkedlistnode<datatype>        *previous;
00008                 linkedlistutil<datatype>        datautil;