Changeset View
Changeset View
Standalone View
Standalone View
src/client/clientfwd.hpp
| Show All 17 Lines | |||||
| namespace Kazv | namespace Kazv | ||||
| { | { | ||||
| using namespace Api; | using namespace Api; | ||||
| class JobInterface; | class JobInterface; | ||||
| class EventInterface; | class EventInterface; | ||||
| struct LoginAction; | struct LoginAction; | ||||
| struct TokenLoginAction; | struct TokenLoginAction; | ||||
| struct MLoginTokenLoginAction; | |||||
| struct LogoutAction; | struct LogoutAction; | ||||
| struct HardLogoutAction; | struct HardLogoutAction; | ||||
| struct GetWellknownAction; | struct GetWellknownAction; | ||||
| struct GetVersionsAction; | struct GetVersionsAction; | ||||
| struct SyncAction; | struct SyncAction; | ||||
| struct SetShouldSyncAction; | struct SetShouldSyncAction; | ||||
| struct PostInitialFiltersAction; | struct PostInitialFiltersAction; | ||||
| struct SetAccountDataAction; | struct SetAccountDataAction; | ||||
| ▲ Show 20 Lines • Show All 49 Lines • ▼ Show 20 Lines | namespace Kazv | ||||
| struct ClientModel; | struct ClientModel; | ||||
| using ClientAction = std::variant< | using ClientAction = std::variant< | ||||
| RoomListAction, | RoomListAction, | ||||
| LoginAction, | LoginAction, | ||||
| TokenLoginAction, | TokenLoginAction, | ||||
| MLoginTokenLoginAction, | |||||
| LogoutAction, | LogoutAction, | ||||
| HardLogoutAction, | HardLogoutAction, | ||||
| GetWellknownAction, | GetWellknownAction, | ||||
| GetVersionsAction, | GetVersionsAction, | ||||
| SyncAction, | SyncAction, | ||||
| SetShouldSyncAction, | SetShouldSyncAction, | ||||
| PostInitialFiltersAction, | PostInitialFiltersAction, | ||||
| ▲ Show 20 Lines • Show All 59 Lines • Show Last 20 Lines | |||||