File: XnDumpFileWriter.h

package info (click to toggle)
openni 1.5.4.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 44,844 kB
  • sloc: cpp: 116,706; ansic: 58,777; sh: 10,287; cs: 7,698; java: 7,402; python: 1,541; makefile: 492; xml: 167
file content (20 lines) | stat: -rw-r--r-- 813 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __XN_DUMP_FILE_WRITER_H__
#define __XN_DUMP_FILE_WRITER_H__ 

//---------------------------------------------------------------------------
// Includes
//---------------------------------------------------------------------------
#include <XnDumpWriters.h>

//---------------------------------------------------------------------------
// Code
//---------------------------------------------------------------------------
class XnDumpFileWriter : public XnDumpWriterBase
{
public:
	virtual XnDumpWriterFileHandle OpenFile(const XnChar* strDumpName, XnBool bSessionDump, const XnChar* strFileName);
	virtual void Write(XnDumpWriterFileHandle hFile, const void* pBuffer, XnUInt32 nBufferSize);
	virtual void CloseFile(XnDumpWriterFileHandle hFile);
};

#endif // __XN_DUMP_FILE_WRITER_H__