Removed the unnecessary tpx/subs.h file

This commit is contained in:
Ray Speth 2013-04-18 22:07:27 +00:00
parent 5be3edbd5f
commit e261fd8ef1
3 changed files with 12 additions and 17 deletions

View file

@ -1,6 +1,8 @@
#ifndef TPX_UTILS_H
#define TPX_UTILS_H
#include "cantera/tpx/Sub.h"
namespace tpx
{
Substance* GetSub(int isub);

View file

@ -1,15 +0,0 @@
#ifndef TPX_SUBS_H
#define TPX_SUBS_H
#include "CarbonDioxide.h"
#include "Heptane.h"
#include "HFC134a.h"
#include "Hydrogen.h"
#include "Methane.h"
#include "Nitrogen.h"
#include "Oxygen.h"
#include "Water.h"
#include "RedlichKwong.h"
#endif

View file

@ -1,6 +1,15 @@
#include "subs.h"
#include "cantera/tpx/utils.h"
#include "CarbonDioxide.h"
#include "Heptane.h"
#include "HFC134a.h"
#include "Hydrogen.h"
#include "Methane.h"
#include "Nitrogen.h"
#include "Oxygen.h"
#include "Water.h"
#include "RedlichKwong.h"
using std::string;
namespace tpx
@ -68,4 +77,3 @@ Substance* GetSub(int isub)
}
}