Definition in file BAPPackage.cpp.
#include "BAPPackage.h"
Include dependency graph for BAPPackage.cpp:

Go to the source code of this file.
Functions | |
| istream & | operator>> (istream &aIS, Indicators &aI) |
| ostream & | operator<< (ostream &aOS, const Indicators &aI) |
|
||||||||||||
|
Definition at line 79 of file BAPPackage.cpp. References Indicators::ABD, Indicators::Density, and Indicators::TranshipmentCost. 00080 { 00081 aOS << "(" << aI.TranshipmentCost << ", " 00082 << aI.Density << ", " << aI.ABD << ")"; 00083 return aOS; 00084 }
|
|
||||||||||||
|
Definition at line 73 of file BAPPackage.cpp. References Indicators::ABD, Indicators::Density, and Indicators::TranshipmentCost. 00074 { 00075 aIS >> aI.TranshipmentCost >> aI.Density >> aI.ABD; 00076 return aIS; 00077 }
|
1.4.4