SAGA C++ API 1.6
task_get_result.cpp
Go to the documentation of this file.
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/task.hpp>
00007 #include <saga/saga/advert.hpp>
00008 #include <saga/saga/adaptors/task.hpp>
00009 #include <saga/saga/detail/task_get_result_impl.hpp>
00010 
00012 namespace saga
00013 {
00015     //  implement all task::get_result<> functions needed in advert package
00016     template SAGA_ADVERT_PACKAGE_EXPORT saga::advert::entry& 
00017         task::get_result<saga::advert::entry>();
00018     template SAGA_ADVERT_PACKAGE_EXPORT saga::advert::entry const& 
00019         task::get_result<saga::advert::entry>() const;
00020 
00021     template SAGA_ADVERT_PACKAGE_EXPORT saga::advert::directory& 
00022         task::get_result<saga::advert::directory>();
00023     template SAGA_ADVERT_PACKAGE_EXPORT saga::advert::directory const& 
00024         task::get_result<saga::advert::directory>() const;
00025 
00026     template SAGA_ADVERT_PACKAGE_EXPORT saga::object& 
00027         task::get_result<saga::object>();
00028     template SAGA_ADVERT_PACKAGE_EXPORT saga::object const& 
00029         task::get_result<saga::object>() const;
00030 
00032 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines