Skip to content

Latest commit

 

History

History
54 lines (34 loc) · 964 Bytes

README.md

File metadata and controls

54 lines (34 loc) · 964 Bytes

About CppEnhanced

Your powerful tool for C++ development.

Whole project use CMake, you can easily import CppEnhanced through CMake.
In future, you will be able to import CppEnhanced from vcpkg and other package manager.

Build

Dependencies

  • CMake. ( Version > 3.6 )
  • C/C++ build toolchains.

Command

mkdir build
cd build
cmake ..
cmake --build . --config=Release

Components

  • DateTime
    DateTime is a C++ time format and operate class

Usage

All components supports chaining methods style.

Take DateTime class for example:

auto date = CppEnhanced::DateTime()
    .SetYear(2023)
    .SetMonth(1)
    .SetDay(4)
    ;
printf("%s\n", date.ToString(1).c_str());
// Output: 2023.1.4

License

We are using AGPLv3.0 now.

More