File size: 411 Bytes
8efb4bd | 1 2 3 4 5 6 7 8 9 10 11 12 | #include "TransformationAndScore.h"
template <>
void TransformationAndScore_T<Score>::outputTrans(std::vector<TransformationAndScore_T<Score> *> &transformations) {
int count = 0;
for (std::vector<TransformationAndScore *>::iterator it = transformations.begin(); it != transformations.end();
it++) {
count++;
std::cout << count << ": " << **it << std::endl;
}
}
|