https://github.com/surpri6e/notes
Console application for create notes
https://github.com/surpri6e/notes
cpp cpp14 notes-app
Last synced: 4 months ago
JSON representation
Console application for create notes
- Host: GitHub
- URL: https://github.com/surpri6e/notes
- Owner: surpri6e
- License: mit
- Created: 2023-11-11T15:47:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-09T14:55:07.000Z (over 1 year ago)
- Last Synced: 2025-01-09T00:13:22.223Z (5 months ago)
- Topics: cpp, cpp14, notes-app
- Language: C++
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Notes
- In project don't use other **.dll** or **.lib**
- Standart: **ISO C++ 14**For work you need list.txt in current directory.
I use React.js principles in cpp project!
Example:
```
void stateUpdate(std::list& todos) {
std::ofstream listOut(FILE_NAME);
if (!listOut.is_open()) {
std::cout << "Something went wrong.";
exit(200);
}
for(auto& todo: todos) {
listOut << todo << '\n';
}
listOut.close();
}
```