/usr/include/xbase64/xbmindex.h is in libxbase64-dev 3.1.2-0ubutu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #ifndef xbMultiIndex_h
#define xbMultiIndex_h
#include <xbase64/xbase64.h>
class xbMultiIndex: public xbIndex
{
public:
xbMultiIndex(xbDbf* dbf): xbIndex(dbf) {}
virtual ~xbMultiIndex() {}
virtual xbShort CreateIndex(const char * filename, const char* tag,
const char* expr, xbShort unique, xbShort overwrite)=0;
};
#endif
|