Clustering de Proteine
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros
entrypdb.h
Go to the documentation of this file.
1 #ifndef FILEPDB_H
2 #define FILEPDB_H
3 #include <vector>
4 #include <string>
5 #include "model.h"
6 class Entrypdb
7 {
8  std::vector <std::string> header;
9  std::vector <Model> model;
10 public:
11  Entrypdb();
12 
13  unsigned int getNbModel();
14  std::string getheader();
15  Model& at(int i);
16 
17  void write(std::ostream &out) const;
18  void processLineFile(const char *line);
19 };
20 
21 #endif // FILEPDB_H