Skip to content

Commit 5fb5781

Browse files
committed
update readme
1 parent a7a0339 commit 5fb5781

File tree

2 files changed

+16
-24
lines changed

2 files changed

+16
-24
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# myPersonalUtilities
1+
# mpUtils
22
a ~~platform independent~~ linux c++ library with some utility classes I use for my personal projects and university assignments
33

44
-------------------------
@@ -35,22 +35,22 @@ Now set up you own project and link mpUtils as a shared library
3535
--------------------------
3636
## features
3737

38+
- wrapper for some openGl (using GLEW) and glfw functionality
39+
- utilities that help with graphical programming
3840
- highly customisable thread safe logger
39-
- ini-Style configuration files
40-
- different timers
41-
- Timer (a simple coutdown timer you have to poll)
42-
- AsyncTimer (like Timer but running in a seperate thread)
43-
- Stopwatch (a timer that works like a stopwatch)
44-
- DeltaTimer (timer that calculates the time since it was last polled)
45-
- all timers can use the cpu_clock or std::chrono defined clocks
46-
47-
- documentation in doxygen style comments
41+
- ini-Style configuration file parser
42+
- different timers including asynchronous ones
43+
- doxygen style documentation
44+
4845
------------------------
4946
## planned features
5047

51-
- wrappers for basic openGL / window management and imGUI
52-
- code for network communication
53-
- code for serial communication
54-
- jason and/or xml (probably external library)
48+
- wrapper for the remaining openGL features
49+
- more utilities for graphics programming (maybe game engine style functionality)
50+
- include a GUI
51+
- network communication
52+
- serial communication
53+
- jason and/or xml
5554
- a argument parser for command line apps
56-
- maybe windows and mac support
55+
- windows and mac support
56+
- improvements to the log (lock-free-queue, more sinks with better format, different depths for massages)

exec/devTest/main.cpp

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,7 @@ double dTime =0;
4141

4242
int main()
4343
{
44-
CpuStopwatch timer; //
45-
46-
// TODO: make the line comments doxygen ones
47-
// TODO: add network
48-
// TODO: add serial
49-
// TODO: add arg parser
50-
// TODO: json / xml parser / class serialization
51-
// TODO: make stuff windows and mac compatible
52-
// TODO maybe use lock free queue for logger
44+
CpuStopwatch timer;
5345

5446
// Log myLog(LogPolicy::CONSOLE, LogLvl::ALL);
5547

0 commit comments

Comments
 (0)