/**********************************************************************
 * 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__ 
