Registry / utility / dingo
library0.1.2vcpkgunverified

Dependency Injection Container for C++.

vcpkg install dingo
INSTALL
IMPORT
SIG · DINGO
D
dingo
utilitycppv0.1.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

dingo/container.h
#include <dingo/container.h>

Register and resolve a simple class using Dingo DI container

#include <dingo/container.h> #include <iostream> class Greeter { public: void greet() { std::cout << "Hello!\n"; } }; int main() { dingo::container container; container.register_type<Greeter>(); auto greeter = container.resolve<Greeter>(); greeter->greet(); return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.1.2latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources

No resource links recorded.

dingo — pip install dingo · libregistry