Skip to content

Commit

Permalink
Merge pull request #28 from GiovanniDicanio/header-and-cpp-separation
Browse files Browse the repository at this point in the history
Library code split between header and .cpp implementation file.
  • Loading branch information
GiovanniDicanio authored May 20, 2020
2 parents 1dfd91d + 86815f1 commit 047c896
Show file tree
Hide file tree
Showing 6 changed files with 1,121 additions and 1,050 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# WinReg v2.2.3
# WinReg v2.3.1
## High-level C++ Wrapper Around the Low-level Windows Registry C-interface API

by Giovanni Dicanio
Expand All @@ -25,9 +25,12 @@ The Win32 registry value types are mapped to C++ higher-level types according th

I initially developed this code using Visual Studio 2015 with Update 3; then I used Visual Studio 2017, and currently **Visual Studio 2019**. I have no longer tested the code with previous compilers. The code compiles cleanly at `/W4` in both 32-bit and 64-bit builds.

This is a **header-only library**, implemented in the [`WinReg.hpp`](WinReg/WinReg.hpp) header file.
This library is made by two files:

`WinRegTest.cpp` contains some demo/test code for the library: check it out for some sample usage.
* [`WinReg.hpp`](WinReg/WinReg.hpp): the library's header file
* [`WinReg.cpp`](WinReg/WinReg.cpp): the library's implementation file

Moreover, `WinRegTest.cpp` contains some demo/test code for the library: check it out for some sample usage.

The library exposes three main classes:

Expand Down
Binary file modified WinReg/GioTest.reg
Binary file not shown.
Loading

0 comments on commit 047c896

Please sign in to comment.