00001 /*
00002 libpdf++: a C++ Free library to generate PDF file
00003 Copyright (C) 2002 Nestal Wan
00004
00005 This library is free software; you can redistribute it and/or
00006 modify it under the terms of the GNU Lesser General Public
00007 License as published by the Free Software Foundation; either
00008 version 2.1 of the License, or (at your option) any later version.
00009
00010 This library is distributed in the hope that it will be useful,
00011 but WITHOUT ANY WARRANTY; without even the implied warranty of
00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
00013 Lesser General Public License for more details.
00014
00015 You should have received a copy of the GNU Lesser General Public
00016 License along with this library; if not, write to the Free Software
00017 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
00018 */
00026 #ifndef __PDF_CORE_TYPE_HEADER_INCLUDED__
00027 #define __PDF_CORE_TYPE_HEADER_INCLUDED__
00028
00029 #include <string>
00030
00031 namespace pdf { namespace core {
00032
00033 class CNumber ;
00034 class CString ;
00035
00045 template <typename T>
00046 struct CType2PDF ;
00047
00048 template <>
00049 struct CType2PDF<int>
00050 {
00051 typedef CNumber result ;
00052 } ;
00053
00054 template <>
00055 struct CType2PDF<long>
00056 {
00057 typedef CNumber result ;
00058 } ;
00059
00060 template <>
00061 struct CType2PDF<double>
00062 {
00063 typedef CNumber result ;
00064 } ;
00065
00066 template <>
00067 struct CType2PDF<std::string>
00068 {
00069 typedef CName result ;
00070 } ;
00071
00072 } } // end of namespace
00073
00074 #endif
1.2.16