contrib/mul/mmn/mmn_add_all_loaders.cxx
Go to the documentation of this file.
00001 #include "mmn_add_all_loaders.h"
00002 //:
00003 // \file
00004 // \brief Add all binary loaders and factory objects for mmn library
00005 // \author Tim Cootes
00006 
00007 #include <mbl/mbl_cloneables_factory.h>
00008 #include "mmn_dp_solver.h"
00009 #include "mmn_lbp_solver.h"
00010 
00011 //: Add all binary loaders and factory objects for mmn library
00012 void mmn_add_all_loaders()
00013 {
00014 
00015   mbl_cloneables_factory<mmn_solver>::add(mmn_dp_solver());
00016   vsl_add_to_binary_loader(mmn_dp_solver());
00017 
00018   mbl_cloneables_factory<mmn_solver>::add(mmn_lbp_solver());
00019   vsl_add_to_binary_loader(mmn_lbp_solver());
00020 }