-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNonValidTag.cpp
More file actions
47 lines (39 loc) · 800 Bytes
/
NonValidTag.cpp
File metadata and controls
47 lines (39 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include "UniTag.h"
using namespace std;
using namespace UniTag;
NonValidTag::NonValidTag(const std::string path) : Tag(path)
{
_state = Tag::NO_TAG;
}
std::string NonValidTag::parseFrameWidthIndex(const unsigned int index) const
{
return "";
}
std::string NonValidTag::get(const std::string flag) const
{
return "";
}
std::vector <char> NonValidTag::getCoverArt() const
{
return std::vector <char>();
}
std::string NonValidTag::getFrameFlag(const unsigned int flag) const
{
return "";
}
void NonValidTag::set(const unsigned int flag, const std::string &text)
{
}
void NonValidTag::setCoverArt(const std::vector <char> &img)
{
}
void NonValidTag::saveFrames(std::string savePath)
{
}
unsigned int NonValidTag::getDuration()
{
return 0;
}
void NonValidTag::parse()
{
}