documentation: pqibin

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

View File

@ -32,6 +32,12 @@
#include "pqi/pqihash.h"
#include <stdio.h>
//! handles writing to binary files
/*!
* This allows for handling of binary file within Rs, In particular writing
* binary data to file declared in constructor
*/
class BinFileInterface: public BinInterface
{
public:
@ -72,7 +78,11 @@ private:
uint64_t bcount;
};
//! handles writing to reading/writing to memory
/*!
* This provide a memory interface for storing information in memory
* to be sent/read elsewhere
*/
class BinMemInterface: public BinInterface
{
public: