Files
mlpack/fastlib/u/nvasil/tree/null_statistics.h
T
2007-05-20 03:09:36 +00:00

33 lines
765 B
C++

/*
* =====================================================================================
*
* Filename: null_statistics.h
*
* Description:
*
* Version: 1.0
* Created: 05/01/2007 02:49:14 PM EDT
* Revision: none
* Compiler: gcc
*
* Author: Nikolaos Vasiloglou (NV), nvasil@ieee.org
* Company: Georgia Tech Fastlab-ESP Lab
*
* =====================================================================================
*/
#include "u/nvasil/loki/NullType.h"
template<typename TYPELIST=Loki::NullType>
class NullStatistics {
public:
void Alias(const NullStatistics &other) {
}
NullStatistics<TYPELIST> &operator=(
const NullStatistics<TYPELIST> &other) {
return *this;
}
};