Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/unknownrori/cpp-unknownrori-header
A collection of my template header file and my attempt on recreating standard c++ library
https://github.com/unknownrori/cpp-unknownrori-header
cpp header-only
Last synced: about 4 hours ago
JSON representation
A collection of my template header file and my attempt on recreating standard c++ library
- Host: GitHub
- URL: https://github.com/unknownrori/cpp-unknownrori-header
- Owner: UnknownRori
- License: mit
- Created: 2022-07-04T08:37:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-05T07:32:47.000Z (about 2 years ago)
- Last Synced: 2023-03-05T09:57:17.257Z (over 1 year ago)
- Topics: cpp, header-only
- Language: C++
- Homepage:
- Size: 106 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### 📦 My C++ Header
this header is adding additional types while also added some custom class template and other stuff that sometime looks hacky, but since all the implementation are in the header file this may cause slow compilation time in larger c++ project, but this thing designed for smaller project so it should be fine and the header file is pretty modular because it's only rely on c++ standard library (iostream and cstdint library).
### 🚀 Usage
just put include directive on the header file you want to include, but if you want all of it just include the `UnknownRori.hpp`
```cpp
#include "./include/UnknownRori/UnknownRori.hpp" // this thing will include entire header file
// OR
#include "./include/UnknownRori/Types.hpp" // this thing will only include the type definitionint main()
{
i32 myNewDataType = 40;
return 0;
}
```