00001 // Copyright (c) 2005-2009 Hartmut Kaiser 00002 // 00003 // Distributed under the Boost Software License, Version 1.0. (See accompanying 00004 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 00005 00006 #include <saga/saga/packages/isn/version.hpp> 00007 00009 namespace saga { 00010 00011 // Returns the version of the SAGA isn package 00012 unsigned long get_isn_package_version() 00013 { 00014 return SAGA_VERSION_PACKAGE_ISN_FULL; 00015 } 00016 00017 // Returns the implemented SAGA isn package API version 00018 unsigned long get_isn_package_api_version() 00019 { 00020 return SAGA_VERSION_PACKAGE_ISN_API; 00021 } 00022 00024 } // namespace saga 00025