utils.h 417 B

1234567891011121314
  1. //
  2. // libtgvoip is free and unencumbered public domain software.
  3. // For more information, see http://unlicense.org or the UNLICENSE file
  4. // you should have received with this source code distribution.
  5. //
  6. #ifndef LIBTGVOIP_UTILS_H
  7. #define LIBTGVOIP_UTILS_H
  8. #define TGVOIP_DISALLOW_COPY_AND_ASSIGN(TypeName) \
  9. TypeName(const TypeName&) = delete; \
  10. void operator=(TypeName&) = delete
  11. #endif /* LIBTGVOIP_UTILS_H */