Barracuda Application Server C/C++ Reference
NO
FileCspReader.h
1#ifndef __FileCspReader_h
2#define __FileCspReader_h
3
4#include <CspRunTm.h>
5#include <BaFile.h>
6
23typedef struct FileCspReader
24#ifdef __cplusplus
25: public CspReader
26{
32 FileCspReader(const char* pathName);
33#else
34{
35 CspReader data;
36#endif
37 U32 currentOffset;
38 ResIntfPtr fp;
40
41#ifdef __cplusplus
42extern "C" {
43#endif
44
45void
46FileCspReader_constructor(FileCspReader* o, const char* pathName);
47#ifdef __cplusplus
48}
49
50inline FileCspReader::FileCspReader(const char* pathName) {
51 FileCspReader_constructor(this, pathName); }
52#endif
53
54
55#endif
Abstract interface class for reading the "dat" file generated byHttpLink.
Definition: CspRunTm.h:119
Example code that shows you how to write a CspReader driver object.
Definition: FileCspReader.h:26
FileCspReader(const char *pathName)
The FileCspReader constructor opens the "dat" file for reading.
Definition: FileCspReader.h:50