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 "math.h"
#include <cmath>
using namespace std;

View File

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

View File

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

View File

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

View File

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