eLynx SDK
v3.3.0 C++ image processing API reference |
00001 //============================================================================ 00002 // ImageLib.h Image.Component package 00003 //============================================================================ 00004 // Usage : declare Image.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 #ifndef __ImageLib_h__ 00014 #define __ImageLib_h__ 00015 00016 #include <elx/core/CoreOS.h> 00017 00018 // for windows platform 00019 #ifdef elxWINDOWS 00020 # ifdef ELYNX_IMAGE_EXPORTS 00021 # define ExportedByImage __declspec(dllexport) // declaration in dll library 00022 # else 00023 # define ExportedByImage __declspec(dllimport) // client of the dll library 00024 # endif 00025 #else 00026 # define ExportedByImage // client of the static library 00027 #endif 00028 00029 namespace eLynx { 00044 00045 namespace Image {} 00046 } // namespace eLynx 00047 00048 #endif // __ImageLib_h__