NT4/private/windows/win4help/ftsrch/bytevect.h

38 lines
638 B
C
Raw Normal View History

2001-01-01 00:00:00 +01:00
#ifndef __BYTEVECT_H__
#define __BYTEVECT_H__
#include "RefCnt.h"
/////////////////////////////////////////////////////////////////////////////
// CByteVector
// Maintains a byte vector in global space.
class CByteVector : public CRCObject
{
public:
// Constructors
CByteVector();
// Destructor
virtual ~CByteVector();
// Reference Counting Routines --
DECLARE_REF_COUNTERS(CByteVector)
// Interface
void SetSize(UINT length);
PWCHAR ElementAt(UINT index); //rmk
private:
PWCHAR m_pb; //rmk
UINT m_cb;
};
#endif // __BYTEVECT_H__