mirror of https://github.com/tongzx/nt5src
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.
18 lines
480 B
18 lines
480 B
/**********************************************************************
|
|
* FontVect.h -- Font vector. An indirect array of FontID objects.
|
|
*
|
|
**********************************************************************/
|
|
|
|
#if !defined(__VIEWVECT_H__)
|
|
#define __VIEWVECT_H__
|
|
|
|
#include "vecttmpl.h"
|
|
|
|
// ********************************************************************
|
|
// Forward Declarations
|
|
//
|
|
class CFontView;
|
|
|
|
typedef CIVector<CFontView> CViewVector;
|
|
|
|
#endif // __VIEWVECT_H__
|