| # | Line 1 | Line 1 | |
|---|---|---|
| 1 | #ifndef __MAKESTAMPS_H__ | |
| 2 | #define __MAKESTAMPS_H__ | |
| 3 | ||
| 4 | < | #include <cstdlib> |
| 5 | < | #include <cstring> |
| 4 | > | #include <stdlib.h> |
| 5 | > | #include <string.h> |
| 6 | ||
| 7 | #include "BASS_interface.h" | |
| 8 | #include "MoleculeStamp.hpp" | |
| # | Line 70 | Line 70 | class MakeStamps{ (private) | |
| 70 | ||
| 71 | private: | |
| 72 | ||
| 73 | < | static const int hash_size = 51; |
| 74 | < | static const int hash_shift = 4; |
| 73 | > | int hash_size; |
| 74 | > | int hash_shift; |
| 75 | int hash( char* text ); | |
| 76 | LinkedMolStamp** my_mols; | |
| 77 | void addMolStamp( MoleculeStamp* the_stamp ); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |