/* * Copyright 2022, Jaidyn Levesque * All rights reserved. Distributed under the terms of the MIT license. */ #ifndef _MAPS_H #define _MAPS_H #include #include "libsupport/KeyMap.h" class ChatCommand; class Command; class Contact; class Conversation; class User; // Defining some commonly-used KeyMaps typedef KeyMap AccountInstances; typedef KeyMap CommandMap; typedef KeyMap ChatMap; typedef KeyMap RosterMap; typedef KeyMap UserMap; #endif // _MAPS_H