• Jump To … +
    README.md args.cpp args.h classpath.cpp classpath.h jinvoke.h jvm_global.h jvm_handler.cpp jvm_handler.h jvm_object.cpp jvm_object.h utils.h values.h
  • classpath.h

  • ¶

    classpath.h LibJNI

    Created by Cesar Valdez on 20/04/2016. Copyright © 2016 Cesar Valdez. All rights reserved.

    #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 */