mirror of https://github.com/lianthony/NT4.0
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.
30 lines
676 B
30 lines
676 B
/**********************************************************************
|
|
* FDirVect.h -- Font directory vector. An indirect array of
|
|
* CFontDir objects.
|
|
*
|
|
**********************************************************************/
|
|
|
|
#if !defined(__FDIRVECT_H__)
|
|
|
|
#define __FDIRVECT_H__
|
|
|
|
#include "vecttmpl.h"
|
|
|
|
// ********************************************************************
|
|
// Forward Declarations
|
|
//
|
|
class CFontDir;
|
|
|
|
typedef CIVector<CFontDir> CFDirVect;
|
|
|
|
class CFDirVector : public CFDirVect
|
|
{
|
|
public:
|
|
CFDirVector( int iSize ) : CFDirVect(iSize) {}
|
|
CFontDir *fdFindDir( LPTSTR lpPath, int iLen, BOOL bAdd = FALSE );
|
|
} ;
|
|
|
|
|
|
#endif // __FDIRVECT_H__
|
|
|
|
|