A collection of basic/generally desirable code I use across multiple C++ projects.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
500 B

1 year ago
  1. #pragma once
  2. #ifndef ULE_CONFIG_H
  3. #define ULE_CONFIG_H
  4. // define this macro to include the serialization code `serialize.h/.cpp`, as well as serialization
  5. // for the hashtable(s) and array implementations.
  6. //#define ULE_CONFIG_OPTION_SERIALIZATION
  7. // all functions in the library will invoke a semicolon-terminated macro as their first line of execution.
  8. // this is for use by an instrusive profiler, though could be used for whatever purpose.
  9. //#define ULE_CONFIG_OPTION_FTAG ZoneScoped
  10. #endif