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

16 lines
203 B
C
Raw Normal View History

2020-08-14 16:58:22 +00:00
#ifndef TGCALLS_PLATFORM_CONTEXT_H
#define TGCALLS_PLATFORM_CONTEXT_H
namespace tgcalls {
class PlatformContext {
public:
virtual ~PlatformContext() = default;
};
} // namespace tgcalls
#endif