// ////////////////////////////////////////////////////////
// Copyright (1994) Columbia University
// Department of Biochemistry and Molecular Biophysics
//
// Author: Weider Chang, Ph.D
//
// ///////////////////////////////////////////////////////

#ifndef _WDCITEMASSOCVALUE_H_
#define _WDCITEMASSOCVALUE_H_
 
#include "wobject.h"
#include "itering.h"

@interface WDCItemAssocValue : WDCObject <WDCLLIteratorComprising>
{
  id _item;
  id _value;

  // data to comprise linked list
  id _next;
  id _prev;
}             

- getItem;
- getValue;
- setItem:item;
- setValue:value;
- (int)compare:anObject;
- printForDebuggerAux;
- printForDebugger;

@end

#endif


