#ifndef classpath_hpp
#define classpath_hpp
#include <iostream>
#include <dirent.h>
#include <algorithm>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "jvm_global.h"
/* Classpath handle here allowing recursive search for .jar and .class */
class ClassPath {
public:
static std::string LocateLibraries(std::vector<std::string> directories, bool recusive);
private:
std::string classPath;
};
#endif /* classpath_hpp */