home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
CLOBSS.PAK
/
BDICT.CPO
< prev
next >
Wrap
Text File
|
1995-08-29
|
1KB
|
47 lines
/*------------------------------------------------------------------------*/
/* */
/* BDICT.CPP */
/* */
/* Copyright Borland International 1991, 1993 */
/* All Rights Reserved */
/* */
/*------------------------------------------------------------------------*/
#if !defined( TEMPLATES )
#define TEMPLATES
#endif
#if !defined( __IOSTREAM_H )
#include <iostream.h>
#endif // __IOSTREAM_H
#if !defined( __ASSOC_H )
#include "classlib\obsolete\assoc.h"
#endif // __ASSOC_H
#if !defined( __DICT_H )
#include "classlib\obsolete\dict.h"
#endif // __DICT_H
#if !defined( __CLSTYPES_H )
#include "classlib\obsolete\clstypes.h"
#endif // __CLSTYPES_H
void Dictionary::add( Object& objectToAdd )
{
if( !objectToAdd.isAssociation() )
ClassLib_error( __ENOTASSOC );
else
Set::add( objectToAdd );
}
Association& Dictionary::lookup( const Object& toLookUp ) const
{
Association toFind( (Object&)toLookUp, NOOBJECT );
toFind.ownsElements(0);
Association& found = (Association&)findMember( toFind );
return found;
}