00001 00002 00003 // 00008 00009 //-------------------------------------------------------------------------- 00010 //-------------------------------------------------------------------------- 00011 // 00012 // libMoM Library - a library for stochastic simulations in engineering. 00013 // 00014 // Copyright (C) 2010 Rochan R. Upadhyay 00015 // 00016 // This library is free software; you can redistribute it and/or 00017 // modify it under the terms of the Version 2.1 GNU Lesser General 00018 // Public License as published by the Free Software Foundation. 00019 // 00020 // This library is distributed in the hope that it will be useful, 00021 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00023 // Lesser General Public License for more details. 00024 // 00025 // You should have received a copy of the GNU Lesser General Public 00026 // License along with this library; if not, write to the Free Software 00027 // Foundation, Inc. 51 Franklin Street, Fifth Floor, 00028 // Boston, MA 02110-1301 USA 00029 // 00030 //-------------------------------------------------------------------------- 00031 00032 #ifndef _INPUTS_H 00033 #define _INPUTS_H 00034 00035 #include<iostream> 00036 00037 using namespace std; 00038 00039 extern "C" { 00040 #include<math.h> 00041 } 00042 00044 // 00045 00046 class inputs { 00047 00048 public: 00049 00051 // 00053 // 00054 00055 int input_reader(char* input_file_name); 00056 }; 00057 00058 #endif // INPUTS_H 00059 00060 00061