telegram/TMessagesProj/jni/voip/tgcalls/PlatformContext.h

16 lines
203 B
C
Raw Normal View History

2025-11-22 14:04:28 +01:00
#ifndef TGCALLS_PLATFORM_CONTEXT_H
#define TGCALLS_PLATFORM_CONTEXT_H
namespace tgcalls {
class PlatformContext {
public:
virtual ~PlatformContext() = default;
};
} // namespace tgcalls
#endif