mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
9298065cef
CPR has features disabled and PCRE is fully disabled until updated to new code.
24 lines
438 B
C++
24 lines
438 B
C++
#ifndef CPR_LOCAL_PORT_RANGE_H
|
|
#define CPR_LOCAL_PORT_RANGE_H
|
|
|
|
#include <cstdint>
|
|
|
|
namespace cpr {
|
|
|
|
class LocalPortRange {
|
|
public:
|
|
// NOLINTNEXTLINE(google-explicit-constructor)
|
|
LocalPortRange(const std::uint16_t p_localportrange) : localportrange_(p_localportrange) {}
|
|
|
|
operator std::uint16_t() const {
|
|
return localportrange_;
|
|
}
|
|
|
|
private:
|
|
std::uint16_t localportrange_ = 0;
|
|
};
|
|
|
|
} // namespace cpr
|
|
|
|
#endif
|