ToPS
crossplatform.hpp
00001 /*
00002  *       crossplatform.hpp
00003  *
00004  *       Copyright 2011 Ígor Bonádio <ibonadio@ime.usp.br>
00005  *                      Andre Yoshiaki Kashiwabara <akashiwabara@usp.br>
00006  *                      Vitor Onuchic <vitoronuchic@gmail.com>
00007  *                      Alan Mitchell Durham <aland@usp.br>
00008  *
00009  *
00010  *       This program is free software; you can redistribute it and/or modify
00011  *       it under the terms of the GNU  General Public License as published by
00012  *       the Free Software Foundation; either version 3 of the License, or
00013  *       (at your option) any later version.
00014  *
00015  *       This program is distributed in the hope that it will be useful,
00016  *       but WITHOUT ANY WARRANTY; without even the implied warranty of
00017  *       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018  *       GNU General Public License for more details.
00019  *
00020  *       You should have received a copy of the GNU General Public License
00021  *       along with this program; if not, write to the Free Software
00022  *       Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
00023  *       MA 02110-1301, USA.
00024  */
00025 
00026 #ifndef CROSS_PLATFORM_HPP
00027 #define CROSS_PLATFORM_HPP
00028 
00029 #ifdef WIN32
00030  #define DLLEXPORT __declspec( dllexport )
00031 #else
00032  #define DLLEXPORT
00033 #endif
00034 
00035 #endif