#include <DataStream.h>
Public Member Functions | |
| datastream () | |
| ~datastream () | |
| void | endd () |
| datastream & | operator<< (std::ostream &(*f)(std::ostream &)) |
| datastream & | operator<< (datastream &(*f)(datastream &)) |
| LOCALMOD (char) | |
| LOCALMOD (unsigned char) | |
| LOCALMOD (const char *) | |
| LOCALMOD (int) | |
| LOCALMOD (long) | |
| LOCALMOD (short) | |
| LOCALMOD (unsigned int) | |
| LOCALMOD (unsigned long) | |
| LOCALMOD (unsigned short) | |
| LOCALMOD (float) | |
| LOCALMOD (double) | |
| LOCALMOD (void *) | |
| LOCALMOD (std::streambuf *) | |
Definition at line 16 of file DataStream.h.
|
|
Definition at line 19 of file DataStream.h. 00019 {}
|
|
|
Definition at line 20 of file DataStream.h. 00020 {;}
|
|
|
Copyright (c) 1995, 1996, 1997, 1998, 1999, 2000 by The Board of Trustees of the University of Illinois. All rights reserved. Definition at line 18 of file DataStream.C. References CollectionMgr::Object(), and CollectionMgr::sendDataStream(). Referenced by endd(). 00018 {
00019 *this << std::ends;
00020 std::string datastr = str();
00021 CollectionMgr::Object()->sendDataStream(datastr.c_str());
00022 str("");
00023 }
|
|
|
|
|
|
<< pointers * |
|
|
|
|
|
<< floats * |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<< integers * |
|
|
|
|
|
|
|
|
<< characters * |
|
|
datastream<<datastream (how to handle class modifiers) * Definition at line 28 of file DataStream.h. 00028 { return f(*this); }
|
|
|
datastream<<ostream (hot to handle inherited modifiers) * Definition at line 26 of file DataStream.h. 00026 { f(*this); return(*this); }
|
1.3.9.1