gcontini
2019-10-13 4e1f76fae58a7e0db111ec68e616e6ea3222f726
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * FileUtils.h
 *
 *  Created on: Apr 8, 2019
 *      
 */
 
#ifndef FILEUTILS_H_
#define FILEUTILS_H_
#include <string>
#include <vector>
 
namespace license {
 
std::vector<std::string> filter_existing_files(const std::vector<std::string>& fileList);
std::string get_file_contents(const char *filename,size_t max_size);
std::string remove_extension(const std::string& path);
 
} /* namespace license */
 
#endif