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