Complete refactor

This commit is contained in:
Tristan B. Velloza Kildaire 2021-08-27 15:16:48 +02:00
parent 70ef3a3ee3
commit 66e2a5cde2
6 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,10 @@
libdnet
=======
DNET client library.
DNET client library.
## Data Structures
There are two _"sets"_, persay, of data structures in the library, there are those generated by ProtocolBuffers and then which are used by the library internally. There are then the OOP data structures used by the user through the API.
The former are located in `source/libdnet/protobuf/` and the latter in `source/libdnet/api/types/`

Binary file not shown.

View File

@ -12,6 +12,6 @@
"name": "libdnet",
"targetPath": "bin",
"targetType": "library",
"preBuildCommands": ["protoc --plugin=\"$HOME/.dub/packages/protobuf-0.6.2/protobuf/protoc_gen_d/../build/protoc-gen-d\" source/libdnet/protobuf/core.proto --d_out=source/libdnet/types/."
"preBuildCommands": ["protoc --plugin=\"$HOME/.dub/packages/protobuf-0.6.2/protobuf/protoc_gen_d/../build/protoc-gen-d\" source/libdnet/protobuf/core.proto --d_out=source/libdnet/protobuf/."
]
}