1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     font.h
4 
5   Copyright (C)2009-2010 Nintendo Co., Ltd./HAL Laboratory, Inc.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain
8   proprietary information of Nintendo of America Inc. and/or Nintendo
9   Company Ltd., and are protected by Federal copyright law.  They may
10   not be disclosed to third parties or copied or duplicated in any form,
11   in whole or in part, without the prior written consent of Nintendo.
12 
13   $Revision: 25674 $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef NN_FONT_H_
17 #define NN_FONT_H_
18 
19 /*!
20     @namespace  nn::font
21     @brief      フォントライブラリの名前空間です。
22 */
23 
24 /*!
25     @namespace  nn::font::CTR
26     @brief      フォントライブラリの名前空間です。
27                 <BR>("::CTR" の部分は省略して記述可能です。)
28 */
29 
30 #include <nn/font/font_CharStrmReader.h>
31 #include <nn/font/font_Font.h>
32 #include <nn/font/font_ResFont.h>
33 #include <nn/font/font_ArchiveFont.h>
34 #include <nn/font/font_PackedFont.h>
35 
36 #if defined(NN_PLATFORM_CTR)
37     #include <nn/font/CTR/font_TagProcessorBase.h>
38     #include <nn/font/CTR/font_TagProcessor.h>
39     #include <nn/font/CTR/font_WideTagProcessor.h>
40 
41     #include <nn/font/CTR/font_CharWriter.h>
42     #include <nn/font/CTR/font_TextWriterBase.h>
43     #include <nn/font/CTR/font_TextWriter.h>
44     #include <nn/font/CTR/font_WideTextWriter.h>
45     #include <nn/font/CTR/font_RectDrawer.h>
46     namespace nn {
47         namespace font {
48             using namespace nn::font::CTR;
49         }
50     }
51 #else
52     #error no platform selected
53 #endif
54 
55 /* NN_FONT_H_ */
56 #endif
57