An open API service indexing awesome lists of open source software.

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

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();
}
```