Skip to content

A library has advanced supports for c++ developers.

License

Notifications You must be signed in to change notification settings

ChenPi11/CppEnhanced

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A library has advanced supports for c++ developers.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 69.4%
  • C++ 29.4%
  • CMake 1.2%