ladybird/LibCore
Andreas Kling bc5148354f LibCore: Add a CConfigFile class, a simple INI file parser.
You open the configuration for an app like so:

    auto config = CConfigFile::get_for_app("MyApp");

This will then open ~/MyApp.ini and parse it for you.
Immediately start using it in Minesweeper to load the field size and mine
count from a config file.
2019-04-15 02:23:20 +02:00
..
.gitignore Introduce LibCore and move GElapsedTimer => CElapsedTimer. 2019-04-10 16:14:44 +02:00
CConfigFile.cpp LibCore: Add a CConfigFile class, a simple INI file parser. 2019-04-15 02:23:20 +02:00
CConfigFile.h LibCore: Add a CConfigFile class, a simple INI file parser. 2019-04-15 02:23:20 +02:00
CElapsedTimer.cpp Introduce LibCore and move GElapsedTimer => CElapsedTimer. 2019-04-10 16:14:44 +02:00
CElapsedTimer.h Introduce LibCore and move GElapsedTimer => CElapsedTimer. 2019-04-10 16:14:44 +02:00
CEvent.cpp LibCore: Move LibGUI/GObject to LibCore/CObject. 2019-04-10 17:01:54 +02:00
CEvent.h LibCore: Add CEventLoop and make LibGUI/GEventLoop inherit from it. 2019-04-10 17:30:58 +02:00
CEventLoop.cpp LibCore: Move LibGUI/GNotifier to LibCore/CNotifier. 2019-04-10 17:35:43 +02:00
CEventLoop.h LibCore: Move LibGUI/GNotifier to LibCore/CNotifier. 2019-04-10 17:35:43 +02:00
CFile.cpp LibCore: Move GIODevice hierarchy from LibGUI to LibCore. 2019-04-10 20:22:23 +02:00
CFile.h LibCore: Move GIODevice hierarchy from LibGUI to LibCore. 2019-04-10 20:22:23 +02:00
CHttpJob.cpp LibCore: Move HTTP classes from LibGUI to LibCore. 2019-04-10 22:28:10 +02:00
CHttpJob.h LibCore: Move HTTP classes from LibGUI to LibCore. 2019-04-10 22:28:10 +02:00
CHttpRequest.cpp LibCore: Move HTTP classes from LibGUI to LibCore. 2019-04-10 22:28:10 +02:00
CHttpRequest.h LibCore: Move HTTP classes from LibGUI to LibCore. 2019-04-10 22:28:10 +02:00
CHttpResponse.cpp LibCore: Move HTTP classes from LibGUI to LibCore. 2019-04-10 22:28:10 +02:00
CHttpResponse.h LibCore: Move HTTP classes from LibGUI to LibCore. 2019-04-10 22:28:10 +02:00
CIODevice.cpp LibCore: Move GIODevice hierarchy from LibGUI to LibCore. 2019-04-10 20:22:23 +02:00
CIODevice.h LibCore: Move GIODevice hierarchy from LibGUI to LibCore. 2019-04-10 20:22:23 +02:00
CLock.h LibCore: Move LibGUI/GLock to LibCore/CLock. 2019-04-10 22:39:59 +02:00
CNetworkJob.cpp LibCore: Move HTTP classes from LibGUI to LibCore. 2019-04-10 22:28:10 +02:00
CNetworkJob.h LibCore: Move HTTP classes from LibGUI to LibCore. 2019-04-10 22:28:10 +02:00
CNetworkResponse.cpp LibCore: Move HTTP classes from LibGUI to LibCore. 2019-04-10 22:28:10 +02:00
CNetworkResponse.h LibCore: Move HTTP classes from LibGUI to LibCore. 2019-04-10 22:28:10 +02:00
CNotifier.cpp LibCore: Prune remaining knowledge about LibGUI. 2019-04-12 00:03:21 +02:00
CNotifier.h LibCore: Move LibGUI/GNotifier to LibCore/CNotifier. 2019-04-10 17:35:43 +02:00
CObject.cpp LibCore: Prune remaining knowledge about LibGUI. 2019-04-12 00:03:21 +02:00
CObject.h LibCore: Move LibGUI/GObject to LibCore/CObject. 2019-04-10 17:01:54 +02:00
CSocket.cpp LibCore: Move GIODevice hierarchy from LibGUI to LibCore. 2019-04-10 20:22:23 +02:00
CSocket.h LibCore: Move GIODevice hierarchy from LibGUI to LibCore. 2019-04-10 20:22:23 +02:00
CSocketAddress.h LibCore: Move GIODevice hierarchy from LibGUI to LibCore. 2019-04-10 20:22:23 +02:00
CTCPSocket.cpp LibCore: Move GIODevice hierarchy from LibGUI to LibCore. 2019-04-10 20:22:23 +02:00
CTCPSocket.h LibCore: Move GIODevice hierarchy from LibGUI to LibCore. 2019-04-10 20:22:23 +02:00
CTimer.cpp LibCore: Add a convenience constructor for CTimer. 2019-04-14 05:44:15 +02:00
CTimer.h LibCore: Add a convenience constructor for CTimer. 2019-04-14 05:44:15 +02:00
Makefile LibCore: Add a CConfigFile class, a simple INI file parser. 2019-04-15 02:23:20 +02:00