mirror of
http://43.156.76.180:8026/YuuMJ/EukPhylo.git
synced 2025-12-28 05:40:26 +08:00
13 lines
412 B
C++
13 lines
412 B
C++
// $Id: distribution.cpp 2709 2007-11-19 14:49:21Z itaymay $
|
|
|
|
#include "distribution.h"
|
|
#include "errorMsg.h"
|
|
|
|
distribution::~distribution(){}
|
|
// this must be here. see Effective c++ page 63 (item 14, constructors, destructors,
|
|
// assignment
|
|
|
|
void distribution::change_number_of_categories(int in_number_of_categories)
|
|
{
|
|
errorMsg::reportError("not implemented: distribution::change_number_of_categories()!");
|
|
} |