FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
subtitle-parser/SubtitleParser.h at master · young-developer/subtitle-parser · GitHub
young-developer
/
subtitle-parser
Public
Notifications
You must be signed in to change notification settings
Fork
6
Star
12
Code
Issues
1
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
subtitle-parser
/
SubtitleParser.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (14 loc) · 339 Bytes
Breadcrumbs
subtitle-parser
/
SubtitleParser.h
Copy path
File metadata and controls
16 lines (14 loc) · 339 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
pragma
once
#
include
"
SubtitleItem.h
"
class
SubtitleParser
{
protected:
std::vector<SubtitleItem*> _subtitles;
std::string _fileName;
virtual
void
parse
(std::string fileName) = 0;
public:
virtual
std::vector<SubtitleItem*>
getSubtitles
();
std::string
getFileData
();
SubtitleParser
(
void
);
virtual
~SubtitleParser
(
void
);
};
Back
|
FazBrowse Home
|
New Git URL