Changeset 77da65 for molecuilder
- Timestamp:
- Apr 24, 2008, 5:03:14 PM (17 years ago)
- Children:
- 41d75d
- Parents:
- e58fcb7
- Location:
- molecuilder/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/helpers.hpp
re58fcb7 r77da65 20 20 21 21 #include "defs.hpp" 22 23 // include config.h 24 #ifdef HAVE_CONFIG_H 25 #include <config.h> 26 #endif 22 27 23 28 /********************************************** helpful functions *********************************/ -
molecuilder/src/molecules.hpp
re58fcb7 r77da65 19 19 #include <set> 20 20 #include <deque> 21 22 // system specific headers23 #include <time.h>24 25 21 26 22 #include "helpers.hpp" -
molecuilder/src/parser.cpp
re58fcb7 r77da65 5 5 */ 6 6 7 using namespace std;8 9 7 // ======================================= INCLUDES ========================================== 10 8 … … 19 17 */ 20 18 #ifdef HAVE_INLINE 21 inline 19 inline bool FilePresent(const char *filename) 20 #else 21 bool FilePresent(const char *filename) 22 22 #endif 23 bool FilePresent(const char *filename)24 23 { 25 24 ifstream input; … … 39 38 * \return given inputdir is valid 40 39 */ 41 #ifdef HAVE_INLINE42 inline43 #endif44 40 bool TestParams(int argc, char **argv) 45 41 { -
molecuilder/src/parser.hpp
re58fcb7 r77da65 9 9 #define PARSING_HPP_ 10 10 11 using namespace std; 12 13 // include config.h 14 #ifdef HAVE_CONFIG_H 15 #include <config.h> 16 #endif 17 11 18 // ======================================= DEFINES ========================================== 12 19 13 #define MYEPSILON 1e-1314 20 #define FactorsFile "BondFragmentTE-Factors.dat" 15 21 #define ForcesFile "BondFragmentForces-Factors.dat" … … 26 32 27 33 #ifdef HAVE_INLINE 28 inline 34 inline bool FilePresent(const char *filename); 35 #else 36 bool FilePresent(const char *filename); 29 37 #endif 30 bool FilePresent(const char *filename);31 38 32 #ifdef HAVE_INLINE33 inline34 #endif35 39 bool TestParams(int argc, char **argv); 40 36 41 37 42 // ======================================= CLASS MatrixContainer =============================
Note:
See TracChangeset
for help on using the changeset viewer.