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 // Use, modification and distribution is subject to the Boost Software 00005 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 00006 // http://www.boost.org/LICENSE_1_0.txt) 00007 00008 #include <saga/saga/packages/stream/version.hpp> 00009 00011 namespace saga { 00012 00013 // Returns the version of the SAGA stream package 00014 unsigned long get_stream_package_version() 00015 { 00016 return SAGA_VERSION_PACKAGE_STREAM_FULL; 00017 } 00018 00019 // Returns the implemented SAGA stream package API version 00020 unsigned long get_stream_package_api_version() 00021 { 00022 return SAGA_VERSION_PACKAGE_STREAM_API; 00023 } 00024 00026 } // namespace saga 00027