#include #include "vector.hpp" #include "task.hpp" using Task = todo::Task; using TVector = cs427_527::Vector; int main(int argc, char **argv) { TVector tasks; tasks.push_back(Task{"make sandwich", 5}); tasks.push_back(Task{"eat sandwich", 15}); std::cout << tasks << std::endl; TVector copy; copy = tasks; std::cout << "COPY: " << copy << std::endl; }