gcontini
2019-10-12 dda16735b94661b798d6c0fd3e41af944de0a1fe
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
/*
 * ExplicitDefinition.hpp
 *
 *  Created on: Oct 12, 2019
 *      Author: devel
 */
 
#ifndef SRC_LIBRARY_LOCATE_EXTERNALDEFINITION_HPP_
#define SRC_LIBRARY_LOCATE_EXTERNALDEFINITION_HPP_
 
#include "LocatorStrategy.hpp"
 
namespace license {
namespace locate {
 
class ExternalDefinition: public LocatorStrategy {
private:
    const std::string m_location;
public:
    ExternalDefinition(const char* location);
    virtual const std::vector<std::string> licenseLocations(EventRegistry& eventRegistry) const;
    virtual ~ExternalDefinition();
};
 
} /* namespace locate */
} /* namespace license */
 
#endif /* SRC_LIBRARY_LOCATE_EXTERNALDEFINITION_HPP_ */