[clib] Remove ctbdry.h which declared only undefined functions

This commit is contained in:
Ray Speth 2016-10-15 19:12:55 -04:00
parent b51c1b8e4e
commit fd3f2c72fb

View file

@ -1,32 +0,0 @@
/**
* @file ctbdry.h
*/
// This file is part of Cantera. See License.txt in the top-level directory or
// at http://www.cantera.org/license.txt for license and copyright information.
#ifndef CTC_BDRY_H
#define CTC_BDRY_H
#include "clib_defs.h"
#ifdef __cplusplus
extern "C" {
#endif
CANTERA_CAPI int bndry_new(int itype);
CANTERA_CAPI int bndry_del(int i);
CANTERA_CAPI double bndry_temperature(int i);
CANTERA_CAPI int bndry_settemperature(int i, double t);
CANTERA_CAPI double bndry_spreadrate(int i);
CANTERA_CAPI int bndry_setSpreadRate(int i, double v);
CANTERA_CAPI int bndry_setmdot(int i, double mdot);
CANTERA_CAPI double bndry_mdot(int i);
CANTERA_CAPI int bndry_setxin(int i, double* xin);
CANTERA_CAPI int bndry_setxinbyname(int i, char* xin);
#ifdef __cplusplus
}
#endif
#endif