Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
sdf_parser.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 // :noTabs=false:tabSize=4:indentSize=4:
4 //
5 // This file is part of the Rosetta software suite and is made available under license.
6 // The Rosetta software is developed by the contributing members of the Rosetta Commons consortium.
7 // (C) 199x-2009 Rosetta Commons participating institutions and developers.
8 // For more information, see http://www.rosettacommons.org/.
9 
10 /// @file core/chemical/sdf/sdf_parser.hh
11 ///
12 /// @brief sdf file parser header
13 /// @author Sam DeLuca
14 
15 
16 #ifndef INCLUDED_core_chemical_sdf_sdf_parser_HH
17 #define INCLUDED_core_chemical_sdf_sdf_parser_HH
18 
21 
22 
23 #include <map>
24 #include <string>
25 #include <utility/vector1.hh>
26 
27 namespace core {
28 namespace chemical {
29 namespace sdf {
30 
31 class SDFParser {
32 public:
34  void SplitSDF();
36  void GenerateResidues();
39 
40 private:
41  std::map<std::string,utility::vector1<std::string> > extended_data_map_;
42  std::map<std::string,utility::vector1<std::string> > mol_file_map_;
44 
45  std::map<std::string,core::chemical::ResidueTypeOP> molecule_map_;
47 };
48 
49 }
50 }
51 }
52 
53 #endif /* SDF_PARSER_HH_ */