Home | Features | Roadmap | Learn | Documentation | ||
Latest version: Tramway SDK 0.0.9 Github Quick links Home Get Started |
FileThis is a file abstraction that I made. I made it because the filestream of the C++ standard library, altough possesing a very je ne sais quoi interface, is way too slow. Currently it can only be used to load text files and parse them from disk. I will probably add some more stuff to it in the future, like accessing files over HTTP instead of just from disk, or maybe loading them from .zip files. Programming in C++
This is how you can parse in some text files.
File file("my-text-file.txt", MODE_READ);
Check |
|
|