1 /*---------------------------------------------------------------------------*
2   Project:  NintendoWare
3   File:     font_TagProcessorBase.cpp
4 
5   Copyright (C)2009-2011 Nintendo/HAL Laboratory, Inc.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain proprietary
8   information of Nintendo and/or its licensed developers and are protected by
9   national and international copyright laws. They may not be disclosed to third
10   parties or copied or duplicated in any form, in whole or in part, without the
11   prior written consent of Nintendo.
12 
13   The content herein is highly confidential and should be handled accordingly.
14 
15   $Revision: 31628 $
16  *---------------------------------------------------------------------------*/
17 
18 #include "precompiled.h"
19 
20 #include <nn/assert.h>
21 #include <nw/font/font_TagProcessorBase.h>
22 #include <nw/font/font_TextWriterBase.h>
23 
24 
25 namespace nw {
26 namespace font {
27 
28 /* ------------------------------------------------------------------------
29         明示的実体化
30    ------------------------------------------------------------------------ */
31 
32 template class TagProcessorBase<char>;
33 template class TagProcessorBase<wchar_t>;
34 
35 
36 }   // namespace font
37 }   // namespace nw
38