]> cgit.babelmonkeys.de Git - jubjub.git/blob - src/gui/cli/JubCLIChatUI.h
Add line editing support to the CLI UI
[jubjub.git] / src / gui / cli / JubCLIChatUI.h
1 #import <ObjFW/ObjFW.h>
2
3 #import "JubChatUI.h"
4
5 @interface JubCLIChatUI: OFObject <JubChatUI>
6 {
7         jub_send_block_t _sendBlock;
8         OFString *_title;
9 }
10
11 - (void)send: (OFString*)text;
12 @end