documentation: pqibin

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2718 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
chrisparker126 2010-04-15 10:54:54 +00:00
parent a07df15d4d
commit 261637ad08

View File

@ -66,7 +66,7 @@ virtual int close();
virtual bool cansend() { return (bin_flags | BIN_FLAGS_WRITEABLE); } virtual bool cansend() { return (bin_flags | BIN_FLAGS_WRITEABLE); }
virtual bool bandwidthLimited() { return false; } virtual bool bandwidthLimited() { return false; }
/* if HASHing is switched on */ //! if HASHing is switched on
virtual std::string gethash(); virtual std::string gethash();
virtual uint64_t bytecount(); virtual uint64_t bytecount();
@ -80,8 +80,8 @@ private:
//! handles writing to reading/writing to memory //! handles writing to reading/writing to memory
/*! /*!
* This provide a memory interface for storing information in memory * This provide a memory interface for storing/retrieving information in memory
* to be sent/read elsewhere * to be read/sent elsewhere
*/ */
class BinMemInterface: public BinInterface class BinMemInterface: public BinInterface
{ {