// all-reg.h // Kevin Karplus // 5 Dec 1995 // A master include file for all Regularizer .h files, // so that someone who wants to use all regularizers doesn't have // to remember all the .h files. #ifndef all_reg_h #define all_reg_h // the various Regularizer types that are known. #include "MLZReg.h" #include "MLPReg.h" #include "DirichletReg.h" #include "GribskovReg.h" #include "SubstPseudoReg.h" #include "FeatureReg.h" // create a variable of this type somewhere in the program to // make sure that all Regularizer code is linked with the program. class link_in_all_regularizers { public: link_in_all_regularizers(void); }; #endif