/**
* @file HelloWorldGaudi_load.cpp
* @brief This is needed for forcing the linker to load all components
* of the library.
*
* $Header: /nfs/slac/g/glast/ground/cvs/workbook/pages/gaudiGuide/popup_HelloWorldGaudi_load.cxx.htm,v 1.1.1.1 2007/06/29 15:04:06 chuckp Exp $
*/
#include "GaudiKernel/DeclareFactoryEntries.h"
// There should be one entry for each component included in
// the library for this package.
DECLARE_FACTORY_ENTRIES(HelloWorldGaudi) {
DECLARE_ALGORITHM(HelloWorld);
}
|