00001 #ifndef PARALLEL_H 00002 #define PARALLEL_H 00003 00008 #include "system.h" 00009 namespace dynamic 00010 { 00014 class Parallel:public System 00015 { 00016 private: 00017 protected: 00018 public: 00019 Parallel(); 00020 ~Parallel(); 00021 void calculation_const() throw(std::runtime_error,std::invalid_argument); 00022 }; 00023 } 00024 #endif //PARALLEL_H