QxOrm  1.2.5
C++ Object Relational Mapping library
get_class_name_primitive.h
Go to the documentation of this file.
00001 /****************************************************************************
00002 **
00003 ** http://www.qxorm.com/
00004 ** Copyright (C) 2013 Lionel Marty (contact@qxorm.com)
00005 **
00006 ** This file is part of the QxOrm library
00007 **
00008 ** This software is provided 'as-is', without any express or implied
00009 ** warranty. In no event will the authors be held liable for any
00010 ** damages arising from the use of this software
00011 **
00012 ** Commercial Usage
00013 ** Licensees holding valid commercial QxOrm licenses may use this file in
00014 ** accordance with the commercial license agreement provided with the
00015 ** Software or, alternatively, in accordance with the terms contained in
00016 ** a written agreement between you and Lionel Marty
00017 **
00018 ** GNU General Public License Usage
00019 ** Alternatively, this file may be used under the terms of the GNU
00020 ** General Public License version 3.0 as published by the Free Software
00021 ** Foundation and appearing in the file 'license.gpl3.txt' included in the
00022 ** packaging of this file. Please review the following information to
00023 ** ensure the GNU General Public License version 3.0 requirements will be
00024 ** met : http://www.gnu.org/copyleft/gpl.html
00025 **
00026 ** If you are unsure which license is appropriate for your use, or
00027 ** if you have questions regarding the use of this file, please contact :
00028 ** contact@qxorm.com
00029 **
00030 ****************************************************************************/
00031 
00032 #ifndef _QX_GET_CLASS_NAME_PRIMITIVE_H_
00033 #define _QX_GET_CLASS_NAME_PRIMITIVE_H_
00034 
00035 #ifdef _MSC_VER
00036 #pragma once
00037 #endif
00038 
00046 #include <string>
00047 #include <vector>
00048 #include <list>
00049 #include <map>
00050 #include <set>
00051 
00052 #include <boost/scoped_ptr.hpp>
00053 #include <boost/shared_ptr.hpp>
00054 #include <boost/unordered_map.hpp>
00055 #include <boost/unordered_set.hpp>
00056 #include <boost/optional.hpp>
00057 #include <boost/tuple/tuple.hpp>
00058 
00059 #include <QtCore/qobject.h>
00060 #include <QtCore/qstring.h>
00061 #include <QtCore/qstringlist.h>
00062 #include <QtCore/qvector.h>
00063 #include <QtCore/qlist.h>
00064 #include <QtCore/qmap.h>
00065 #include <QtCore/qset.h>
00066 #include <QtCore/qhash.h>
00067 #include <QtCore/qdatetime.h>
00068 #include <QtCore/qvariant.h>
00069 #include <QtCore/qbytearray.h>
00070 #include <QtCore/qlinkedlist.h>
00071 #include <QtCore/qpair.h>
00072 #include <QtCore/qpoint.h>
00073 #include <QtCore/qrect.h>
00074 #include <QtCore/qregexp.h>
00075 #include <QtCore/qsharedpointer.h>
00076 #include <QtCore/qsize.h>
00077 #include <QtCore/qurl.h>
00078 #include <QtCore/quuid.h>
00079 #include <QtCore/QWeakPointer>
00080 
00081 #if _QX_ENABLE_QT_GUI_DEPENDENCY
00082 #include <QtGui/qcolor.h>
00083 #include <QtGui/qfont.h>
00084 #include <QtGui/qimage.h>
00085 #include <QtGui/qbrush.h>
00086 #include <QtGui/qmatrix.h>
00087 #include <QtGui/qpicture.h>
00088 #include <QtGui/qpixmap.h>
00089 #include <QtGui/qregion.h>
00090 #endif // _QX_ENABLE_QT_GUI_DEPENDENCY
00091 
00092 #if (QT_VERSION >= 0x040600)
00093 #include <QtCore/qscopedpointer.h>
00094 #endif // (QT_VERSION >= 0x040600)
00095 
00096 #include <QxDao/QxDaoPointer.h>
00097 
00098 #include <QxTraits/get_class_name.h>
00099 
00100 QX_REGISTER_CLASS_NAME(bool)
00101 QX_REGISTER_CLASS_NAME(int)
00102 QX_REGISTER_CLASS_NAME(short)
00103 QX_REGISTER_CLASS_NAME(long)
00104 QX_REGISTER_CLASS_NAME(float)
00105 QX_REGISTER_CLASS_NAME(double)
00106 QX_REGISTER_CLASS_NAME(long double)
00107 QX_REGISTER_CLASS_NAME(char)
00108 QX_REGISTER_CLASS_NAME(unsigned int)
00109 QX_REGISTER_CLASS_NAME(unsigned short)
00110 QX_REGISTER_CLASS_NAME(unsigned long)
00111 QX_REGISTER_CLASS_NAME(unsigned char)
00112 
00113 QX_REGISTER_CLASS_NAME(std::string)
00114 QX_REGISTER_CLASS_NAME(std::wstring)
00115 
00116 QX_REGISTER_CLASS_NAME(QObject)
00117 QX_REGISTER_CLASS_NAME(QString)
00118 QX_REGISTER_CLASS_NAME(QStringList)
00119 QX_REGISTER_CLASS_NAME(QByteArray)
00120 QX_REGISTER_CLASS_NAME(QDate)
00121 QX_REGISTER_CLASS_NAME(QDateTime)
00122 QX_REGISTER_CLASS_NAME(QPoint)
00123 QX_REGISTER_CLASS_NAME(QRect)
00124 QX_REGISTER_CLASS_NAME(QRegExp)
00125 QX_REGISTER_CLASS_NAME(QSize)
00126 QX_REGISTER_CLASS_NAME(QTime)
00127 QX_REGISTER_CLASS_NAME(QUrl)
00128 QX_REGISTER_CLASS_NAME(QVariant)
00129 QX_REGISTER_CLASS_NAME(QUuid)
00130 
00131 #if _QX_ENABLE_QT_GUI_DEPENDENCY
00132 QX_REGISTER_CLASS_NAME(QColor)
00133 QX_REGISTER_CLASS_NAME(QFont)
00134 QX_REGISTER_CLASS_NAME(QImage)
00135 QX_REGISTER_CLASS_NAME(QBrush)
00136 QX_REGISTER_CLASS_NAME(QMatrix)
00137 QX_REGISTER_CLASS_NAME(QPicture)
00138 QX_REGISTER_CLASS_NAME(QPixmap)
00139 QX_REGISTER_CLASS_NAME(QRegion)
00140 #endif // _QX_ENABLE_QT_GUI_DEPENDENCY
00141 
00142 QX_REGISTER_CLASS_NAME_TEMPLATE_1(std::allocator)
00143 QX_REGISTER_CLASS_NAME_TEMPLATE_1(std::vector)
00144 QX_REGISTER_CLASS_NAME_TEMPLATE_1(std::list)
00145 QX_REGISTER_CLASS_NAME_TEMPLATE_1(std::set)
00146 
00147 QX_REGISTER_CLASS_NAME_TEMPLATE_1(boost::shared_ptr)
00148 QX_REGISTER_CLASS_NAME_TEMPLATE_1(boost::scoped_ptr)
00149 QX_REGISTER_CLASS_NAME_TEMPLATE_1(boost::weak_ptr)
00150 QX_REGISTER_CLASS_NAME_TEMPLATE_1(boost::optional)
00151 
00152 QX_REGISTER_CLASS_NAME_TEMPLATE_1(QVector)
00153 QX_REGISTER_CLASS_NAME_TEMPLATE_1(QList)
00154 QX_REGISTER_CLASS_NAME_TEMPLATE_1(QLinkedList)
00155 QX_REGISTER_CLASS_NAME_TEMPLATE_1(QSharedPointer)
00156 QX_REGISTER_CLASS_NAME_TEMPLATE_1(QWeakPointer)
00157 
00158 QX_REGISTER_CLASS_NAME_TEMPLATE_1(qx::dao::ptr)
00159 
00160 QX_REGISTER_CLASS_NAME_TEMPLATE_2(std::pair)
00161 QX_REGISTER_CLASS_NAME_TEMPLATE_2(std::map)
00162 
00163 QX_REGISTER_CLASS_NAME_TEMPLATE_2(boost::unordered_map)
00164 QX_REGISTER_CLASS_NAME_TEMPLATE_2(boost::unordered_multimap)
00165 QX_REGISTER_CLASS_NAME_TEMPLATE_2(boost::unordered_set)
00166 QX_REGISTER_CLASS_NAME_TEMPLATE_2(boost::unordered_multiset)
00167 
00168 QX_REGISTER_CLASS_NAME_TEMPLATE_2(QPair)
00169 QX_REGISTER_CLASS_NAME_TEMPLATE_2(QHash)
00170 QX_REGISTER_CLASS_NAME_TEMPLATE_2(QMultiHash)
00171 QX_REGISTER_CLASS_NAME_TEMPLATE_2(QMap)
00172 QX_REGISTER_CLASS_NAME_TEMPLATE_2(QMultiMap)
00173 
00174 QX_REGISTER_CLASS_NAME_TEMPLATE_1(boost::tuple)
00175 QX_REGISTER_CLASS_NAME_TEMPLATE_2(boost::tuple)
00176 QX_REGISTER_CLASS_NAME_TEMPLATE_3(boost::tuple)
00177 QX_REGISTER_CLASS_NAME_TEMPLATE_4(boost::tuple)
00178 QX_REGISTER_CLASS_NAME_TEMPLATE_5(boost::tuple)
00179 QX_REGISTER_CLASS_NAME_TEMPLATE_6(boost::tuple)
00180 QX_REGISTER_CLASS_NAME_TEMPLATE_7(boost::tuple)
00181 QX_REGISTER_CLASS_NAME_TEMPLATE_8(boost::tuple)
00182 QX_REGISTER_CLASS_NAME_TEMPLATE_9(boost::tuple)
00183 
00184 #if (QT_VERSION >= 0x040600)
00185 QX_REGISTER_CLASS_NAME_TEMPLATE_1(QScopedPointer)
00186 #endif // (QT_VERSION >= 0x040600)
00187 
00188 #endif // _QX_GET_CLASS_NAME_PRIMITIVE_H_