00001 // Copyright (c) 2005-2007 Andre Merzky (andre@merzky.net) 00002 // Copyright (c) 2007 Ole Weidner (oweidner@cct.lsu.edu) 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 #ifndef SAGA_ASYNC_HPP 00008 #define SAGA_ASYNC_HPP 00009 00010 #include <saga/saga/export_definitions.hpp> 00011 00012 namespace saga { 00013 00014 // the tagging interface for all SAGA classes which should implement the 00015 // asynchroneous method interface 00017 00018 class SAGA_PACKAGE_EXPORT async { }; 00020 00021 } // namespace saga 00022 00023 #endif // SAGA_ASYNC_HPP 00024