SAGA Adaptor CPI v.1.0
|
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 #if !defined(SAGA_PACKAGES_SD_ADAPTORS_SD_HPP) 00007 #define SAGA_PACKAGES_SD_ADAPTORS_SD_HPP 00008 00009 #include <saga/saga/util.hpp> 00010 #include <saga/saga/base.hpp> 00011 #include <saga/saga/session.hpp> 00012 00013 #include <saga/saga/sd.hpp> 00014 00016 namespace saga { namespace adaptors { 00017 00018 class SAGA_SD_PACKAGE_EXPORT service_description 00019 : public saga::sd::service_description 00020 { 00021 public: 00022 service_description (saga::url loc); 00023 00024 service_description (TR1::shared_ptr<saga::impl::service_description> impl); 00025 00026 ~service_description(); 00027 }; 00028 00030 }} // namespace saga::adaptors 00031 00032 #endif // !defined(SAGA_PACKAGES_SD_ADAPTORS_SD_HPP)