16 lines
260 B
C++
16 lines
260 B
C++
#include <iostream>
|
|
|
|
#include "Recipe.h"
|
|
|
|
int main()
|
|
{
|
|
Recipe test;
|
|
auto ingredients = test.Ingredients();
|
|
ingredients = test.Ingredients(2.5);
|
|
|
|
for(const auto &i : ingredients)
|
|
std::cout << i.first.Name() << ", " << i.second << std::endl;
|
|
|
|
return 0;
|
|
}
|