Added a missing #endif

This commit is contained in:
Harry Moffat 2011-12-21 22:47:50 +00:00
parent 81d315e562
commit 12a7f447fc

View file

@ -1,4 +1,3 @@
/** /**
* @file TortuosityBruggeman.h * @file TortuosityBruggeman.h
* Class to compute the increase in diffusive path length in porous media * Class to compute the increase in diffusive path length in porous media
@ -15,8 +14,8 @@
* $Revision: 572 $ * $Revision: 572 $
* $Date: 2010-08-13 20:21:57 -0600 (Fri, 13 Aug 2010) $ * $Date: 2010-08-13 20:21:57 -0600 (Fri, 13 Aug 2010) $
*/ */
#ifndef CT_TORTUOSITYBRUGGEMAN_H #ifndef CT_TORTUOSITY_H
#define CT_TORTUOSITYBRUGGEMAN_H #define CT_TORTUOSITY_H
namespace Cantera { namespace Cantera {
@ -44,11 +43,11 @@ namespace Cantera {
* *
* The tortuosity comes into play in conjunction the the * The tortuosity comes into play in conjunction the the
*/ */
class TortuosityBruggeman { class Tortuosity {
public: public:
//! Default constructor uses Bruggemann exponent of 1.5 //! Default constructor uses Bruggemann exponent of 1.5
TortuosityBruggeman(double setPower = 1.5 ) : expBrug_(setPower) { Tortuosity(double setPower = 1.5 ) : expBrug_(setPower) {
} }
//! The tortuosity factor models the effective increase in the //! The tortuosity factor models the effective increase in the
@ -190,3 +189,4 @@ namespace Cantera {
}; };
} }
#endif