| 1 |
/** @file |
| 2 |
* $Source: /repository/event/NullAlgorithm.cpp,v $ |
| 3 |
* $Id: NullAlgorithm.cpp,v 1.1 2008-01-11 17:14:21 messineo Exp $ |
| 4 |
* $Author: messineo $ |
| 5 |
* |
| 6 |
* Implementation of the default functions of the Algorithm class. |
| 7 |
*/ |
| 8 |
|
| 9 |
#include "Algorithm.h" |
| 10 |
|
| 11 |
using namespace pamela; |
| 12 |
|
| 13 |
NullAlgorithm::NullAlgorithm(const PacketType *t): |
| 14 |
Algorithm(t, "NullAlgorithm") { } |
| 15 |
|
| 16 |
std::string NullAlgorithm::GetVersionInfo(void) const { |
| 17 |
return |
| 18 |
"$Header: /repository/event/NullAlgorithm.cpp,v 1.1 2008-01-11 17:14:21 messineo Exp $\n"; |
| 19 |
} |
| 20 |
|
| 21 |
ClassImp(NullAlgorithm) |