![]() |
ENSDF++ 1.1
An easy, fast and simple way to run querys towards the ENSDF database, written in C++.
|
00001 00013 using namespace std; 00014 #ifndef ASSERT_H 00015 #define ASSERT_H//!<Inclusion guard. 00016 #include <assert.h> 00017 #endif 00018 00019 #ifndef IOSTREAM 00020 #define IOSTREAM//!<Inclusion guard. 00021 #include <iostream> 00022 #endif 00023 00024 #ifndef LIST 00025 #define LIST//!<Inclusion guard. 00026 #include <list> 00027 #endif 00028 00029 #ifndef STRING 00030 #define STRING//!<Inclusion guard. 00031 #include <string> 00032 #endif 00033 00034 #include "Isotop.h" 00035 #include "GenericUnitTest.h" 00036 00037 00038 #ifndef ISOTOP_TEST 00039 #define ISOTOP_TEST//!<Inclusion guard. 00040 00046 class Isotop_TEST: public GenericUnitTest 00047 { 00048 public: 00049 int runUnitTests() const; 00050 protected: 00051 bool Isotop_ConstructsCorrectly_AssertTrue() const; 00052 }; 00053 00054 #endif