Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DatabaseStatements.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
11 /// @author Sam DeLuca
12 
13 #ifndef INCLUDED_protocols_features_DatabaseStatements_HH
14 #define INCLUDED_protocols_features_DatabaseStatements_HH
15 
16 #include <core/types.hh>
17 #include <utility/sql_database/DatabaseSessionManager.fwd.hh>
18 #include <string>
19 
20 //External
21 #include <boost/uuid/uuid.hpp>
22 
23 namespace protocols {
24 namespace features {
25 
26 // a class
27 
29  utility::sql_database::sessionOP db_session,
30  core::Size const & protocol_id,
31  std::string const & input_tag=""
32 );
34  utility::sql_database::sessionOP db_session,
35  core::Size const & protocol_id,
36  std::string const & score_term
37 );
39  utility::sql_database::sessionOP db_session,
40  std::string const & score_term,
41  core::Size const & protocol_id,
42  std::string const & input_tag="");
43 
45  utility::sql_database::sessionOP db_session,
46  core::Size const & score_type_id,
47  core::Size const & protocol_id,
48  std::string const & input_tag="" );
49 
50 
52  utility::sql_database::sessionOP db_session,
53  std::string const & score_term,
54  core::Size const & protocol_id,
55  std::string const & input_tag="" );
56 
58  utility::sql_database::sessionOP db_session,
59  core::Size const & score_type_id,
60  core::Size const & protocol_id,
61  std::string const & input_tag="");
62 
64  utility::sql_database::sessionOP db_session,
65  std::string const & score_term,
66  core::Size const & cutoff_index,
67  core::Size const & protocol_id,
68  std::string const & input_tag);
69 
71  utility::sql_database::sessionOP db_session,
72  core::Size const & score_type_id,
73  core::Size const & cutoff_index,
74  core::Size const & protocol_id,
75  std::string const & input_tag);
76 
78  utility::sql_database::sessionOP db_session,
79  boost::uuids::uuid const & struct_id,
80  std::string const & score_term);
81 
83  utility::sql_database::sessionOP db_session,
84  boost::uuids::uuid const & struct_id,
85  core::Size const & score_type_id);
86 
87 
88 
89 
90 
91 
92 
93 
94 
95 
96 }
97 }
98 
99 
100 #endif /* PROTEINSILENTREPORT_UTIL_HH_ */