Gabriele Contini
2020-03-15 a1b64080d1525a7a65e53f33d1a3fd257957e732
src/library/locate/EnvironmentVarData.hpp
@@ -12,18 +12,18 @@
namespace license {
namespace locate {
class EnvironmentVarData: public LocatorStrategy {
class EnvironmentVarData : public LocatorStrategy {
private:
   bool isBase64 = false;
public:
   EnvironmentVarData();
   virtual const std::vector<std::string> license_locations(EventRegistry& eventRegistr);
   virtual const std::string retrieve_license_content(const std::string &licenseLocation) const;
   const virtual std::vector<std::string> license_locations(EventRegistry& eventRegistr);
   const virtual std::string retrieve_license_content(const std::string& licenseLocation) const;
   virtual ~EnvironmentVarData();
};
}
}
}  // namespace locate
}  // namespace license
#endif