Cross platform, Interactive text-based interface with command completion
Posted
by
trojanfoe
on Stack Overflow
See other posts from Stack Overflow
or by trojanfoe
Published on 2011-01-13T06:57:12Z
Indexed on
2011/01/15
15:53 UTC
Read the original article
Hit count: 151
Does anyone know of a C++ library that will provide a text-based interactive interface? I want to create two versions of an application; a console based program that will perform whatever actions are given on the command line or interactively at the console as well as a GUI based program (Mac Cocoa and Windows MFC). Both versions will share a common C++ backend.
For the console based program I would like similar history abilities to readline (which I cannot use as this application will be closed source) with command completion (Tab-activated for example).
Perhaps there is something like this already available?
© Stack Overflow or respective owner