LibLogicalAccess  2.5.0
An Open Source RFID Library
Loading...
Searching...
No Matches
windowsregistry.hpp
Go to the documentation of this file.
1#pragma once
2
3#ifdef _WIN32
4
5#include <logicalaccess/lla_core_api.hpp>
7#include <string>
8#include <vector>
9#include <cstdint>
10
11namespace logicalaccess
12{
19class LLA_CORE_API WindowsRegistry
20{
21 public:
22 WindowsRegistry();
23 ~WindowsRegistry();
24
25 static bool writeBinary(const std::string &keypath, const std::string &keyname,
26 const ByteVector &data);
27
28 static bool readBinary(const std::string &keypath, const std::string &keyname,
29 ByteVector &out);
30};
31}
32
33#endif
std::vector< uint8_t > ByteVector
Definition: lla_fwd.hpp:80
Definition: asn1.hpp:9