Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MPI_EndPoint.fwd.hh
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
2 // vi: set ts=2 noet:
3 //
4 // (c) Copyright Rosetta Commons Member Institutions.
5 // (c) This file is part of the Rosetta software suite and is made available under license.
6 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
7 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
8 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
9 
10 /// @file protocols/wum2/MPI_EndPoint.fwd.hh
11 /// @brief Handles communication between different roles in mpi
12 // Every role in mpi needs one of these for each different role it communicates with
13 // for example, slave only communicates with master so slave needs one
14 // master communicates with slave and pool, so master needs two
15 
16 // role_available_mem is a functor to the role's available memory function
17 //
18 // this allows a role with multiple endpoints have its endpoints be aware of
19 // other endpoint memory usage and act accordingly
20 /// @author Ken Jung
21 
22 #ifndef INCLUDED_protocols_wum2_MPI_EndPoint_fwd_hh
23 #define INCLUDED_protocols_wum2_MPI_EndPoint_fwd_hh
24 
25 #include <boost/shared_ptr.hpp>
26 
27 namespace protocols {
28 namespace wum2 {
29 
30 class MPI_EndPoint;
31 typedef boost::shared_ptr< MPI_EndPoint > MPI_EndPointSP;
32 
33 
34 } //namespace wum2
35 } //namespace protocols
36 
37 #endif
38