38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
/*
|
|
* 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_VERSION
|
|
#define OSGOCEAN_VERSION
|
|
|
|
#include <osgOcean/Export>
|
|
|
|
extern "C" {
|
|
|
|
#define OSGOCEAN_VERSION_MAJOR 1
|
|
#define OSGOCEAN_VERSION_MINOR 0
|
|
#define OSGOCEAN_VERSION_PATCH 1
|
|
|
|
#define OSGOCEAN_VERSION_RELEASE OSGOCEAN_VERSION_PATCH
|
|
#define OSGOCEAN_VERSION_REVISION 0
|
|
|
|
extern OSGOCEAN_EXPORT const char* osgOceanGetVersion();
|
|
|
|
extern OSGOCEAN_EXPORT const char* osgOceanGetLibraryName();
|
|
|
|
}
|
|
|
|
#endif |