00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #include "BAPPartitioner.h"
00028
00029 using std::cout;
00030 using std::endl;
00031
00032 BAPPartitioner::BAPPartitioner(BAPPackage& aPackage)
00033 : BAPBase(), mPackage(aPackage)
00034 {
00035 }
00036
00037
00038 BAPPartitioner::~BAPPartitioner()
00039 {
00040 }
00041
00042
00043 void BAPPartitioner::Print(int aW, int aDetail) const
00044 {
00045 cout << tab(aW) << "--== BAPPartitioner ==--" << endl
00046 << tab(aW) << " ID = " << ID() << endl
00047 << tab(aW) << " Name = " << Name() << endl
00048 << endl;
00049
00050 mPackage.Print(aW + INDENT, aDetail);
00051 }
00052