File: distribution.cpp

package info (click to toggle)
fastml 3.11-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,772 kB
  • sloc: cpp: 48,522; perl: 3,588; ansic: 819; makefile: 386; python: 83; sh: 55
file content (13 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
// $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()!");
}