#ifndef STRINGLISTELEM_H #define STRINGLISTELEM_H //************************************************************ // // StringListElem.h // //************************************************************ // // Copyright (C) 1996 // // J. Fritz Barnes // Graduate Student // Computer Science Department // University of California // Davis, CA 95616 // // // Permission is granted to use at your own risk and // distribute this software in source and binary forms // provided the above copyright notice and this paragraph // are preserved on all copies. This software is provided // "as is" with no express or implied warranty. // //************************************************************ #include "STring.h" struct STringListElem { public: STring elemValue; STringListElem* next; STringListElem* prev; }; #endif