Home
last modified time | relevance | path

Searched refs:ICommStream (Results 1 – 5 of 5) sorted by relevance

/trunk/main/automation/source/inc/
H A Dicommstream.hxx37 class ICommStream class
41 ICommStream(){} in ICommStream() function in ICommStream
42 virtual ~ICommStream(){} in ~ICommStream()
44 virtual ICommStream& operator>>( comm_USHORT& rUShort )=0;
45 virtual ICommStream& operator>>( comm_ULONG& rULong )=0;
46 virtual ICommStream& operator>>( comm_BOOL& rChar )=0;
48 virtual ICommStream& operator<<( comm_USHORT nUShort )=0;
49 virtual ICommStream& operator<<( comm_ULONG nULong )=0;
50 virtual ICommStream& operator<<( comm_BOOL nChar )=0;
H A Dsvcommstream.hxx30 class SvCommStream : public ICommStream
39 ICommStream& operator>>( comm_USHORT& rUShort );
40 ICommStream& operator>>( comm_ULONG& rULong );
41 ICommStream& operator>>( comm_BOOL& rChar );
43 ICommStream& operator<<( comm_USHORT nUShort );
44 ICommStream& operator<<( comm_ULONG nULong );
45 ICommStream& operator<<( comm_BOOL nChar );
H A Dcmdbasestream.hxx41 ICommStream* pCommStream;
/trunk/main/automation/source/server/
H A Dsvcommstream.cxx32 ICommStream& SvCommStream::operator>>( comm_USHORT& rUShort ) { *pStream >> rUShort; return *this; } in operator >>()
33 ICommStream& SvCommStream::operator>>( comm_ULONG& rULong ) { *pStream >> rULong; return *this; } in operator >>()
34 ICommStream& SvCommStream::operator>>( comm_BOOL& rChar ) { *pStream >> rChar; return *this; } in operator >>()
36 ICommStream& SvCommStream::operator<<( comm_USHORT nUShort ) { *pStream << nUShort; return *this; } in operator <<()
37 ICommStream& SvCommStream::operator<<( comm_ULONG nULong ) { *pStream << nULong; return *this; } in operator <<()
38 ICommStream& SvCommStream::operator<<( comm_BOOL nChar ) { *pStream << nChar; return *this; } in operator <<()
H A Dscmdstrm.hxx34 class ICommStream;

Completed in 42 milliseconds