Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Pipe.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/Pipe.fwd.hh
11 /// @brief Quick typedef of a vector of PoseSP
12 /// @author Ken Jung
13 
14 #ifndef INCLUDED_core_io_serialization_Pipe_fwd_hh
15 #define INCLUDED_core_io_serialization_Pipe_fwd_hh
16 
17 #ifdef USELUA
18 #include <lua.hpp>
19 #include <luabind/luabind.hpp>
20 #endif
21 
22 #include <boost/shared_ptr.hpp>
23 #include <core/pose/Pose.fwd.hh>
24 #include <vector>
25 
26 #ifdef USEBOOSTSERIALIZE
27 #include <boost/serialization/vector.hpp>
28 #include <boost/serialization/shared_ptr.hpp>
29 #endif
30 
31 namespace core {
32 namespace io {
33 namespace serialization {
34 
35 typedef std::vector< core::pose::PoseSP > Pipe;
36 typedef boost::shared_ptr< Pipe > PipeSP;
37 
38 #ifdef USELUA
39 void lregister_Pipe( lua_State * lstate );
40 #endif
41 
42 int size( PipeSP p );
43 core::pose::PoseSP at( PipeSP p, int idx );
44 PipeSP clone( PipeSP p );
45 
46 } //serialization
47 } //io
48 } //core
49 
50 #endif
51 
52