gcontini
2019-10-19 497745ad31c90545b288e2845049e0ce474bcbe2
src/library/locate/ApplicationFolder.hpp
New file
@@ -0,0 +1,28 @@
/*
 * ApplicationFolder.h
 *
 *  Created on: Oct 6, 2019
 *      Author: devel
 */
#ifndef SRC_LIBRARY_RETRIEVERS_APPLICATIONFOLDER_H_
#define SRC_LIBRARY_RETRIEVERS_APPLICATIONFOLDER_H_
#include <string>
#include "LocatorStrategy.hpp"
namespace license {
namespace locate {
class ApplicationFolder: public LocatorStrategy {
public:
   ApplicationFolder();
   virtual const std::vector<std::string> license_locations(EventRegistry& eventRegistry);
   virtual ~ApplicationFolder();
};
}
} /* namespace license */
#endif /* SRC_LIBRARY_RETRIEVERS_APPLICATIONFOLDER_H_ */