/** @file * $Source: /home/cvsmanager/yoda/event/NullAlgorithm.cpp,v $ * $Id: NullAlgorithm.cpp,v 2.0 2004/09/21 20:49:57 kusanagi Exp $ * $Author: kusanagi $ * * Implementation of the default functions of the Algorithm class. */ #include "Algorithm.h" using namespace pamela; NullAlgorithm::NullAlgorithm(const PacketType *t): Algorithm(t, "NullAlgorithm") { } std::string NullAlgorithm::GetVersionInfo(void) const { return "$Header: /home/cvsmanager/yoda/event/NullAlgorithm.cpp,v 2.0 2004/09/21 20:49:57 kusanagi Exp $\n"; } ClassImp(NullAlgorithm)