Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ResFileOutputter.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=1 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/outputter/ResFileOutputter.hh
11 /// @brief Saves a resfile that is generated by applying the input task operations to the pose
12 /// @author Ken Jung
13 
14 #ifndef INCLUDED_protocols_outputter_ResFileOutputter_hh
15 #define INCLUDED_protocols_outputter_ResFileOutputter_hh
16 
17 // Unit Headers
20 
22 
23 namespace protocols {
24 namespace outputter {
25 
26 
27 #ifdef USELUA
28  void lregister_ResFileOutputter( lua_State * lstate );
29 #endif
30 
32 
33  public:
35  virtual ~ResFileOutputter();
36 
37  virtual void write( Pose & p );
38 
39 #ifdef USELUA
40  void parse_def( utility::lua::LuaObject const & def,
41  utility::lua::LuaObject const & tasks );
42  virtual void lregister( lua_State * lstate );
43 #endif
44 
45  // factory functions
47  static std::string name() {
48  return "ResFileOutputter";
49  }
50 
51  private:
55 
56 
57 }; // end
58 
59 } // outputter
60 } // protocols
61 
62 
63 #endif //INCLUDED_protocols_outputter_ResFileOutputter_hh