mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-25 07:27:44 +00:00
git-subtree-dir: submodules/libtgvoip git-subtree-mainline:d153fe0f21git-subtree-split:dcbbfd9ec4
15 lines
417 B
C
Vendored
15 lines
417 B
C
Vendored
//
|
|
// libtgvoip is free and unencumbered public domain software.
|
|
// For more information, see http://unlicense.org or the UNLICENSE file
|
|
// you should have received with this source code distribution.
|
|
//
|
|
|
|
#ifndef LIBTGVOIP_UTILS_H
|
|
#define LIBTGVOIP_UTILS_H
|
|
|
|
#define TGVOIP_DISALLOW_COPY_AND_ASSIGN(TypeName) \
|
|
TypeName(const TypeName&) = delete; \
|
|
void operator=(TypeName&) = delete
|
|
|
|
#endif /* LIBTGVOIP_UTILS_H */
|