disccord
disccord copied to clipboard
A Discord library for C++
How can someone learn this library when there are no docs?
What tools should we use for generating documentation? What should the docs contain?
Most importantly, the section on [Constructors](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cctor-constructors-assignments-and-destructors). This means defining appropriate ctors for types, or deleting them if not appropriate.
The endpoint(s) are open now, probably will be released (on canary) very soon:tm:, so may as well prepare to support this so it's not forgotten later. **NOTE:** will update the...
This PR is just handling the **basic/simple** essentials for receiving and sending all the opcodes. Things that are out of scope for this PR: - Logging - Any Reconnect/Resume logic...
This is a nice event emitter/dispatcher that lets ppl pass in lambdas or void funcs when listening for gateway events. It also makes it very easy to emit these events...
Addresses #19. Todo: - [x] Initial pass - [ ] Find any additional areas - [ ] Consistency check
This issue will be used to track the status of the websocket client. - [x] Connection logic - [ ] Heartbeat logic - [x] Receive gateway events - [ ]...
Some areas are missing `const` where the values returned/used/etc are not modified and so should be const.
Unit tests are needed to ensure the code I'm writing actually works. This involves adding some stuff to the CMakeLists to allow building of unit tests. - [x] Add unit...