Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
BasicSequenceCreators.cc
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/sequence/SequenceCreator.hh
11 /// @brief Base class for SequenceCreators for the Sequence load-time factory registration scheme
12 /// @author James Thompson
13 
15 
16 // AUTO-REMOVED #include <core/sequence/SequenceFactory.hh>
17 
24 
25 #include <utility/vector1.hh>
26 
27 
28 namespace core {
29 namespace sequence {
30 
31 // class def for SimpleSequence
35  return new Sequence;
36 }
37 
39  return "sequence";
40 }
41 
45  return new SequenceCoupling;
46 }
47 
49  return "sequence_coupling";
50 }
54  return new SequenceProfile;
55 }
56 
58  return "sequence_profile";
59 }
60 
64  return new CompositeSequence;
65 }
66 
68  return "composite_sequence";
69 }
70 
74  return new ChemicalShiftSequence;
75 }
76 
78  return "composite_sequence";
79 }
80 
81 } //namespace sequence
82 } //namespace core