nancy.liao
2025-05-29 8d405b265285c368df2e9cf1c14acee7532e0ee7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * EnvironmentVarLocation.h
 *
 *  Created on: Oct 6, 2019
 *      Author: devel
 */
 
#ifndef SRC_LIBRARY_LOCATE_ENVIRONMENTVARDATA_H_
#define SRC_LIBRARY_LOCATE_ENVIRONMENTVARDATA_H_
 
#include "LocatorStrategy.hpp"
 
namespace license {
namespace locate {
class EnvironmentVarData : public LocatorStrategy {
private:
    bool isBase64 = false;
 
public:
    EnvironmentVarData();
    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