home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C Programming Starter Kit 2.0
/
SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso
/
bc45
/
classsrc.pak
/
TIMEP.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1997-07-23
|
1KB
|
36 lines
/*------------------------------------------------------------------------*/
/* */
/* TIMEP.CPP */
/* */
/* Copyright (c) 1993, 1994 Borland International */
/* All Rights Reserved */
/* */
/*------------------------------------------------------------------------*/
#if !defined( __STRSTREA_H )
#include <strstrea.h>
#endif
#if !defined( CLASSLIB_TIME_H )
#include <classlib/time.h>
#endif
#if !defined( CLASSLIB_OBJSTRM_H )
#include <classlib/objstrm.h>
#endif
opstream _BIDSFAR & _BIDSFUNC operator << ( opstream _BIDSFAR & os,
const TTime _BIDSFAR & d )
{
return os << d.Sec;
}
ipstream _BIDSFAR & _BIDSFUNC operator >> ( ipstream _BIDSFAR & is,
TTime _BIDSFAR & d )
{
return is >> d.Sec;
}