istreamSubclass: None
CClipboardTestIStream objects are used to stream text data in from a CClipboard. They should be retrieved only from a CClipboard.
CClipboard aCB(CB_REA );
CClipboardTextIStream * aTextStr = aCB.GetTextIStream();
*aTextStr myTextBuf; // Streaming in text
int ipfx(int =0);
void isfx() { unlockbuf(); unlock(); }
istream& operator(istream& (__cdecl * _f)(istream&));
istream& operator(ios& (__cdecl * _f)(ios&));
istream& operator(char *);
istream& operator(unsigned char *);
istream& operator(signed char *);
istream& operator(char &);
istream& operator(unsigned char &);
istream& operator(signed char &);
istream& operator(short &);
istream& operator(unsigned short &);
istream& operator(int &);
istream& operator(unsigned int &);
istream& operator(long &);
istream& operator(unsigned long &);
istream& operator(float &);
istream& operator(double &);
istream& operator(long double &);
istream& operator(streambuf*);
int get();
istream& get(char *,int,char ='\n');
istream& get(unsigned char *,int,char ='\n');
istream& get(signed char *,int,char ='\n');
istream& get(char &);
istream& get(unsigned char &);
istream& get(signed char &);
istream& get(streambuf&,char ='\n');
istream& getline(char *,int,char ='\n');
istream& getline(unsigned char *,int,char ='\n');
istream& getline(signed char *,int,char ='\n');
istream& ignore(int =1,int =EOF);
istream& read(char *,int);
istream& read(unsigned char *,int);
istream& read(signed char *,int);
int gcount() const;
int peek();
istream& putback(char);
int sync();
istream& seekg(streampos);
istream& seekg(streamoff,ios::seek_dir);
streampos tellg();
void eatwhite();