This C++ utility library provides classes for reading and writing various file formats.
Class | Description |
---|---|
TxtFile | Read and write text files. |
IniFile | Read and write INI files. |
JsonFile | Read and write JSON files. |
BinFile | Read and write binary files. |
BmpFile | Read BMP image files. Copy BMP files. |
UString | String formatting utility. |
Variant | Holds various data types in a single variable. |
- Include the necessary headers.
- Instantiate the desired file class.
- Use provided methods for file operations.
- Optionally, use additional tools like
UString
orVariant
.
Google Test framework is used for testing to ensure the correct functionality of each file type and utility.