parser.h 268 Bytes
Newer Older
Matteo's avatar
update  
Matteo committed
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef FINDFILENAME_H
#define FINDFILENAME_H

#include <stdlib.h>
#include <filesystem>

using std::string;

void findFileNameFromPath(string* path, string* fileName, string* extension);
int findFileName(string videoPath, string &fileName, string &extension);

#endif