Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PipeMap.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 core/io/serialization/PipeMap.fwd.hh
11 /// @brief Quick typedef of a map of strings to PipeSP
12 /// @author Ken Jung
13 
14 #ifndef INCLUDED_core_io_serialization_PipeMap_fwd_hh
15 #define INCLUDED_core_io_serialization_PipeMap_fwd_hh
16 
17 #ifdef USELUA
18 #include <lua.hpp>
19 #include <luabind/luabind.hpp>
20 #endif
21 
22 #include <core/pose/Pose.fwd.hh>
24 #include <boost/shared_ptr.hpp>
25 #include <boost/weak_ptr.hpp>
26 #include <map>
27 
28 #ifdef USEBOOSTSERIALIZE
29 #include <boost/serialization/map.hpp>
30 #include <boost/serialization/shared_ptr.hpp>
31 #endif
32 
33 namespace core {
34 namespace io {
35 namespace serialization {
36 
37 typedef std::map< std::string, PipeSP > PipeMap;
38 typedef boost::shared_ptr< PipeMap > PipeMapSP;
39 typedef boost::weak_ptr< PipeMap > PipeMapWP;
40 
41 #ifdef USELUA
42 void lregister_PipeMap( lua_State * lstate );
43 #endif
44 void insert( PipeMapSP p, std::string const & pipename, core::pose::PoseSP pose );
45 PipeSP at( PipeMapSP p, std::string const & pipename );
48 
49 } //serialization
50 } //io
51 } //core
52 
53 #endif
54 
55