v4 preprocessor mex/sources/simulate: replaced C headers by their C++ counterpart

git-svn-id: https://www.dynare.org/svn/dynare/dynare_v4@1712 ac1d8469-bf42-47a9-8791-bf33cf982152
issue#70
sebastien 2008-02-19 14:35:59 +00:00
parent 2e8251ebfd
commit e495078e8d
7 changed files with 18 additions and 18 deletions

View File

@ -22,10 +22,10 @@
#include <iostream>
#include <sstream>
#include <fstream>
#include <time.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctime>
#include <cstdlib>
#include <cstring>
#include <cmath>
using namespace std;
//------------------------------------------------------------------------------
#include "BlockTriangular.hh"

View File

@ -21,7 +21,7 @@
#include <iterator>
#include <algorithm>
#include <math.h>
#include <cmath>
#include "ExprNode.hh"
#include "DataTree.hh"

View File

@ -17,8 +17,8 @@
* along with Dynare. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <stdio.h>
#include <cstdlib>
#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>

View File

@ -18,8 +18,8 @@
*/
//#define DEBUG
#include <stdio.h>
#include <stdlib.h>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <sstream>
#include <fstream>

View File

@ -21,7 +21,7 @@
#include <fstream>
#include <sstream>
#include <math.h>
#include <cmath>
#include "ModelTree.hh"
#include "Interface.hh"

View File

@ -17,13 +17,13 @@
* along with Dynare. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <stdio.h>
#include <cstdlib>
#include <cstdio>
#include <iostream>
#include <string>
#include <sys/time.h>
#include <ctime>
#include <stack>
#include <math.h>
#include <cmath>
#include "ModelTree.hh"
#include "Model_Graph.hh"
#include "BlockTriangular.hh"

View File

@ -17,13 +17,13 @@
* along with Dynare. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <stdio.h>
#include <cstdlib>
#include <cstdio>
#include <iostream>
#include <string>
#include <sys/time.h>
#include <ctime>
#include <stack>
#include <math.h>
#include <cmath>
#include <fstream>
#include "ModelTree.hh"