This repository includes initializers officially maintained by CPLib.
First include cplib.hpp in the code, then select an initializer for your target platform, and use the corresponding CPLIB_REGISTER_<MODE>_OPT
Macro registration state with the initializer.
Here's a usage example:
#include "cplib.hpp"
#include "cplib-initializers/include/testlib/checker.cpp"
// Some initializers have non-default constructors where parameters can be passed to the constructor
CPLIB_REGISTER_CHECKER_OPT(Input, Output, cplib_initializers::testlib::checker::Initializer(true));
All initializers in this project are independent. You can include a single file into your program without including the entire project.
See platform_compatibility.md for details.
Copyright (c) 2024-present, rindag-devs