Skip to content

Commit

Permalink
Update project name in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
brunokc authored Oct 15, 2023
1 parent b3354d0 commit 6e3035c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# WCL - Windows Class Library
# NCL - Native Class Library

A C++ library aimed at making day-to-day tasks easier to do. The API is based
the .NET Base Class Library (BCL) where it makes sense, while maintaining some
well-known C++ standards, like the use of STL. For example, we use std::wstring
instead of creating a new String class; we use std::vector<> instead of raw
arrays and use std::shared_ptr<> to allow sharing of object instances.
NCL (pronounced "Nickel") is a C++ library aimed at making day-to-day tasks easier
to do. The API borrows the design from the .NET Base Class Library (BCL) where it
makes sense, while maintaining some well-known C++ standards, like the use of STL.
For example, std::wstring are used instead of a new String class (although more
helpers functions are provided); std::vector<> is used instead of raw arrays
and std::shared_ptr<> is used to allow sharing of object instances.

## Example 1

Expand Down

0 comments on commit 6e3035c

Please sign in to comment.