| # | Line 4 | Line 4 | |
|---|---|---|
| 4 | #include "VDWAtom.hpp" | |
| 5 | #include <fstream> | |
| 6 | #include <vector> | |
| 7 | – | #include <zlib.h> |
| 7 | ||
| 8 | using namespace std; | |
| 9 | ||
| # | Line 14 | Line 13 | class PDBReader { (public) | |
| 13 | ||
| 14 | PDBReader(void); | |
| 15 | ~PDBReader(void); | |
| 16 | < | void setPDBfile(const char*); |
| 16 | > | void setPDBfileName(const char*); |
| 17 | > | void setPDBfile(FILE* myFile); |
| 18 | vector<VDWAtom*> getAtomList(void); | |
| 19 | unsigned int getTotAtoms(void); | |
| 20 | char *TrimSpaces(char *str); | |
| # | Line 24 | Line 24 | class PDBReader { (public) | |
| 24 | int done; | |
| 25 | vector<VDWAtom*> theAtoms; | |
| 26 | int status; | |
| 27 | < | gzFile PDBfile; |
| 27 | > | FILE* PDBfile; |
| 28 | ||
| 29 | }; | |
| 30 | ||
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |