XLL+ Class Library (7.0)

CXlIStream::operator >>

Reads a serialized value from the input stream

CXlIStream& operator >>(
   double& dval
);
CXlIStream& operator >>(
   short int& sval
);
CXlIStream& operator >>(
   unsigned short& usval
);
CXlIStream& operator >>(
   int& ival
);
CXlIStream& operator >>(
   long& lval
);
CXlIStream& operator >>(
   bool& bval
);
CXlIStream& operator >>(
   std::string& strval
);
CXlIStream& operator >>(
   CString& cstrval
);
CXlIStream& operator >>(
   CXlOper& xloval
);
CXlIStream& operator >>(
   COper& opval
);
CXlIStream& operator >>(
   CXlArray& xlaval
);

Parameters

dval

A reference to a numeric value which will be read from the input stream.

sval

A reference to a numeric value which will be read from the input stream.

usval

A reference to a numeric value which will be read from the input stream.

ival

A reference to a numeric value which will be read from the input stream.

lval

A reference to a numeric value which will be read from the input stream.

bval

A reference to a boolean value which will be read from the input stream.

strval

A reference to a string which will be read from the input stream.

cstrval

A reference to a string which will be read from the input stream.

xloval

A reference to a CXlOper object which will be read from the input stream.

opval

A reference to a COper object which will be read from the input stream.

xlaval

A reference to a CXlArray object which will be read from the input stream.

Requirements

Header: xlserialize.h

See Also

CXlIStream Class | CXlIStream Methods