#include <string>
#include <iostream>
#include <vector>
using namespace std;

vector<string> GetFiles(string path, string pattern, bool AllElements)
{
	return vector<string>();
}

int main() {
	bool AllElements = true;
	string path("C:\\FOLDER");
	string pattern("*.*");
	vector<string> v = GetFiles(path, pattern, AllElements);
	return 0;
}