12 lines
165 B
C++
12 lines
165 B
C++
#ifndef PRINTER_H
|
|
#define PRINTER_H
|
|
|
|
#include <vector>
|
|
|
|
#include "ticket.h"
|
|
|
|
using namespace std;
|
|
|
|
void print_tickets(vector<ticket_t> tickets);
|
|
|
|
#endif // PRINTER_H
|