SAGA Adaptor CPI v.1.0
|
00001 // Copyright (c) 2005-2007 Andre Merzky (andre@merzky.net) 00002 // Copyright (c) 2005-2009 Hartmut Kaiser 00003 // 00004 // Distributed under the Boost Software License, Version 1.0. (See accompanying 00005 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 00006 00007 #include <saga/saga/packages/namespace/version.hpp> 00008 00010 namespace saga 00011 { 00012 // Returns the version of the SAGA namespace package 00013 unsigned long get_namespace_package_version() 00014 { 00015 return SAGA_VERSION_PACKAGE_NAMESPACE_FULL; 00016 } 00017 00018 // Returns the implemented SAGA namespace package API version 00019 unsigned long get_namespace_package_api_version() 00020 { 00021 return SAGA_VERSION_PACKAGE_NAMESPACE_API; 00022 } 00023 00024 } // namespace saga 00026