/*
* This source file is part of the osgOcean library
* 
* Copyright (C) 2009 Kim Bale
* Copyright (C) 2009 The University of Hull, UK
* 
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free Software
* Foundation; either version 3 of the License, or (at your option) any later
* version.

* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
* http://www.gnu.org/copyleft/lesser.txt.
*/

#ifndef OSGOCEAN_EXPORT_
#define OSGOCEAN_EXPORT_ 1

#if defined(_MSC_VER)
#pragma warning( disable : 4121 )
#pragma warning( disable : 4244 )
#pragma warning( disable : 4251 )
#pragma warning( disable : 4267 )
#pragma warning( disable : 4275 )
#pragma warning( disable : 4290 )
#pragma warning( disable : 4786 )
#pragma warning( disable : 4305 )
#pragma warning( disable : 4996 )
#endif

#if defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__) || defined( __BCPLUSPLUS__)
#  if defined( OSG_LIBRARY_STATIC )
#    define OSGOCEAN_EXPORT
#  elif defined( OSGOCEAN_LIBRARY )
#    define OSGOCEAN_EXPORT   __declspec(dllexport)
#  else
#    define OSGOCEAN_EXPORT   __declspec(dllimport)
#  endif
#else
#  define OSGOCEAN_EXPORT
#endif  

/**

\namespace osgOcean

Some comment about what osgOcean is
*/

#endif
