yatbcpp  0.0.1
Yet another Telegram Bot CPP Library
chat_type.h
Go to the documentation of this file.
1 #ifndef YATBCPP_CHAT_TYPE_H
2 #define YATBCPP_CHAT_TYPE_H
3 
4 namespace yatbcpp{
5 
6  enum class chat_type{//sigh ich vermiss das typdef von c
7  Private,//Großgeschrieben da private sonst ambigious
8  Group,
10  Channel,
11  };
12 
13 }
14 
15 
16 #endif //YATBCPP_CHAT_TYPE_H
chat_type
Definition: chat_type.h:6
Definition: Bot.h:27