includeEssentials.h 412 B

12345678910
  1. 
  2. // Header for including only the most essential parts of the framework needed for command line applications.
  3. #ifndef DFPSR_INCLUDED_ESSENTIALS
  4. #define DFPSR_INCLUDED_ESSENTIALS
  5. // The essential headers needed for CLI applications
  6. #include "api/bufferAPI.h" // Storing binary data
  7. #include "api/fileAPI.h" // Saving and loading binary files
  8. #include "api/stringAPI.h" // Processing text
  9. #endif