You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
867 B
32 lines
867 B
// RegStringArray.h: interface for the CRegStringArray class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_REGSTRINGARRAY_H__BBA3E398_DEFE_49DE_9674_D25E0687BCB8__INCLUDED_)
|
|
#define AFX_REGSTRINGARRAY_H__BBA3E398_DEFE_49DE_9674_D25E0687BCB8__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include <tchar.h>
|
|
#include "RegFile.h" // Added by ClassView
|
|
|
|
class CRegStringBuffer
|
|
{
|
|
public:
|
|
void Sort(int NumElements);
|
|
TCHAR** Access(int NumElements, int ElementSize);
|
|
CRegStringBuffer(int arraySize, int elementSize);
|
|
virtual ~CRegStringBuffer();
|
|
|
|
TCHAR** GetDirect() {return m_Array;}
|
|
|
|
|
|
protected:
|
|
TCHAR** m_Array;
|
|
int m_arraySize, m_elementSize;
|
|
int m_cellsUsed;
|
|
};
|
|
|
|
#endif // !defined(AFX_REGSTRINGARRAY_H__BBA3E398_DEFE_49DE_9674_D25E0687BCB8__INCLUDED_)
|