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.
22 lines
486 B
22 lines
486 B
/**********************************************************************
|
|
* FontVect.h -- Font vector. An indirect array of FontID objects.
|
|
*
|
|
**********************************************************************/
|
|
|
|
#if !defined(__FONTVECT_H__)
|
|
#define __FONTVECT_H__
|
|
|
|
#include "vecttmpl.h"
|
|
|
|
|
|
// ********************************************************************
|
|
// Forward Declarations
|
|
//
|
|
class CFontClass;
|
|
|
|
typedef CIVector<CFontClass> CFontVector;
|
|
|
|
|
|
|
|
#endif // __FONTVECT_H__
|
|
|