convert poems lib to use c++-style header includes

This commit is contained in:
Axel Kohlmeyer 2018-05-08 00:29:56 -04:00
parent 3394d18a2a
commit f4d14c96e8
5 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,7 @@
*_________________________________________________________________________*/ *_________________________________________________________________________*/
#include "eulerparameters.h" #include "eulerparameters.h"
#include "math.h" #include <cmath>
using namespace std; using namespace std;

View File

@ -16,7 +16,7 @@
*_________________________________________________________________________*/ *_________________________________________________________________________*/
#include "matrixfun.h" #include "matrixfun.h"
#include <math.h> #include <cmath>
#include "fastmatrixops.h" #include "fastmatrixops.h"
#include <cstdlib> #include <cstdlib>

View File

@ -19,7 +19,7 @@
#include "system.h" #include "system.h"
#include "body.h" #include "body.h"
#include "joint.h" #include "joint.h"
#include <math.h> #include <cmath>
System::System(){ System::System(){

View File

@ -23,7 +23,7 @@
#include <iostream> #include <iostream>
#include <fstream> #include <fstream>
#include <string> #include <string>
#include <stdio.h> #include <cstdio>
#include <iomanip> #include <iomanip>
#include "poemslist.h" #include "poemslist.h"

View File

@ -23,7 +23,7 @@
#include <iostream> #include <iostream>
#include <fstream> #include <fstream>
#include <string> #include <string>
#include <stdio.h> #include <cstdio>
#include <iomanip> #include <iomanip>
#include <vector> #include <vector>