Audio plugin host https://kx.studio/carla
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.

ScratchString.h 370B

12345678910111213141516171819202122
  1. #pragma once
  2. #define SCRATCH_SIZE 128
  3. namespace zyncarla {
  4. //Fixed Size String Substitute
  5. struct ScratchString
  6. {
  7. ScratchString(void);
  8. ScratchString(int num);
  9. ScratchString(unsigned char num);
  10. ScratchString(const char *str);
  11. ScratchString operator+(const ScratchString s);
  12. //operator const char*() const;
  13. char c_str[SCRATCH_SIZE];
  14. };
  15. }