21 lines
399 B
C++
21 lines
399 B
C++
#ifndef PRINTFRAMES_H
|
|
#define PRINTFRAMES_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include "../include/Frame.h"
|
|
|
|
using namespace std;
|
|
|
|
class PrintFrames {
|
|
public:
|
|
PrintFrames() = default;
|
|
|
|
~PrintFrames() = default;
|
|
|
|
static void printHeader();
|
|
static void printValue(string values);
|
|
static string parseValue(vector<Frame> frames);
|
|
};
|
|
|
|
#endif |