eLynx SDK
v3.3.0 C++ image processing API reference |
00001 //============================================================================ 00002 // MathLib.h Math.Component package 00003 //============================================================================ 00004 // Usage : declare Math.Component access from dll. 00005 //---------------------------------------------------------------------------- 00006 // Copyright (C) 2006 by eLynx project 00007 // 00008 // This library is free software; you can redistribute it and/or 00009 // modify it under the terms of the GNU Library General Public 00010 // License as published by the Free Software Foundation; either 00011 // version 2 of the License, or (at your option) any later version. 00012 // 00013 // This library is distributed in the hope that it will be useful, 00014 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00016 // See the GNU Library General Public License for more details. 00017 //---------------------------------------------------------------------------- 00018 #ifndef __MathLib_h__ 00019 #define __MathLib_h__ 00020 00021 #include <elx/core/CoreOS.h> 00022 00023 // for windows platform 00024 #ifdef elxWINDOWS 00025 # ifdef ELYNX_MATH_EXPORTS 00026 # define ExportedByMath __declspec(dllexport) // declaration in dll library. 00027 # else 00028 # define ExportedByMath __declspec(dllimport) // client of the dll library. 00029 # endif 00030 #else 00031 # define ExportedByMath // client of the static library. 00032 #endif 00033 00034 namespace eLynx { 00036 namespace Math {} 00037 } // namespace eLynx 00038 00039 #endif // __MathLib_h__