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
29
30
31
#ifndef RETRIEVE_FACTORY_H_
#define RETRIEVE_FACTORY_H_
 
#include <cstddef>
#include <string>
#include <vector>
 
#include "../base/base.h"
#include "LocatorStrategy.hpp"
 
namespace license {
namespace locate {
 
class LocatorFactory {
private:
    inline LocatorFactory() {
    }
    inline ~LocatorFactory() {
    }
public:
 
    static FUNCTION_RETURN getActiveStrategies(
            std::vector<std::unique_ptr<LocatorStrategy>> &strategiesOut,
            const char *locationHint);
 
};
 
}
}
 
#endif