/**************************************************************************************************/
/*                                                                                                */
/*  Name:  DarC KonQuesT                                                                          */
/*  Program:  #3                                                                                  */
/*  Date:  2005.3.2                                                                               */
/*  Purpose:                                                                                      */
/*  stockListType class declaration, functions, and friend declarations.                          */
/*                                                                                                */  
/*                                                                                                */
/*                                                                                                */
/**************************************************************************************************/
#ifndef H_stockListType
#define H_stockListType


#include <iostream>
#include <string>
#include <cassert>
#include <fstream>
#include "stockType.h"
#include "orderedListType.h"


class stockListType: public orderedLinkedListType<stockType> {

  //  operator overloading and friend declaration
	friend istream& operator >>(istream&, stockListType&);
	
	public:
	stockListType(); //  constructor

	private:
	stockType stock_in;  //stockType object

};

#endif

