00001 /* FeNiLiq class header file 00002 * asymmetric regular solution from Kress (1999a) 00003 * Victor Kress 00004 */ 00005 #ifndef FENILIQ_H 00006 #define FENILIQ_H 00007 00008 #include "RegularSolution.h" 00009 00017 class FeNiLiq: public RegularSolution { 00018 public: 00020 FeNiLiq(); 00022 ~FeNiLiq(); 00024 const int NCOMP; 00026 const int FE; 00028 const int NI; 00029 00030 protected: 00032 virtual void init(); 00033 }; 00034 00035 #endif