Skip to content

Commit

Permalink
Few doc warnings removal
Browse files Browse the repository at this point in the history
  • Loading branch information
lisitsyn committed Mar 25, 2012
1 parent f399095 commit 46a716f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/shogun/lib/memory.h
Expand Up @@ -56,15 +56,33 @@ void operator delete[](void *p) throw();
#ifdef TRACE_MEMORY_ALLOCS
namespace shogun
{
/** @brief memory block */
class MemoryBlock
{
public:
/** constructor
* @param p p
*/
MemoryBlock(void* p);
/** constructor
* @param p p
* @param sz sz
* @param fname fname
* @param linenr line number
*/
MemoryBlock(void* p, size_t sz, const char* fname=NULL, int linenr=-1);
/** copy constructor
* @param b b
*/
MemoryBlock(const MemoryBlock &b);

/** equality
* @param b b
*/
bool operator==(const MemoryBlock &b) const;
/** display */
void display();
/** set sg object */
void set_sgobject();

protected:
Expand Down

0 comments on commit 46a716f

Please sign in to comment.