mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 14:35:03 +01:00
15 lines
203 B
C++
15 lines
203 B
C++
#ifndef TGCALLS_PLATFORM_CONTEXT_H
|
|
#define TGCALLS_PLATFORM_CONTEXT_H
|
|
|
|
namespace tgcalls {
|
|
|
|
class PlatformContext {
|
|
|
|
public:
|
|
virtual ~PlatformContext() = default;
|
|
|
|
};
|
|
|
|
} // namespace tgcalls
|
|
|
|
#endif
|