Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ConformationEvent.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 // (C) 199x-2009 University of Washington
10 // (C) 199x-2009 University of California Santa Cruz
11 // (C) 199x-2009 University of California San Francisco
12 // (C) 199x-2009 Johns Hopkins University
13 // (C) 199x-2009 University of North Carolina, Chapel Hill
14 // (C) 199x-2009 Vanderbilt University
15 
16 /// @file core/pose/signals/ConformationEvent.hh
17 /// @brief signal for a conformation change in a Pose
18 /// @author Yih-En Andrew Ban (yab@u.washington.edu)
19 
20 #ifndef INCLUDED_core_pose_signals_ConformationEvent_hh
21 #define INCLUDED_core_pose_signals_ConformationEvent_hh
22 
23 
24 // unit headers
26 
27 // package headers
29 
30 #include <core/pose/Pose.fwd.hh>
31 
32 #include <utility/vector1.hh>
33 
34 
35 
36 namespace core {
37 namespace pose {
38 namespace signals {
39 
40 
41 /// @brief signals a conformation change in a Pose
43 
44 
45  // typedefs
47 
48 
49  /// @brief default constructor
50  inline
52  Super()
53  {}
54 
55 
56  /// @brief constructor
57  inline
59  Super( pose )
60  {}
61 
62 
63  /// @brief copy constructor
64  inline
66  Super( rval )
67  {}
68 
69 
70  /// @brief default destructor
71  inline
72  virtual
74 
75 
76  /// @brief copy assignment
77  inline
79  operator =( ConformationEvent const & rval ) {
80  if ( this != &rval ) {
81  Super::operator =( rval );
82  }
83  return *this;
84  }
85 
86 
87 };
88 
89 
90 } // namespace signals
91 } // namespace pose
92 } // namespace core
93 
94 
95 #endif /* INCLUDED_core_pose_signals_ConformationEvent_HH */