donotturnoff / aerend

My third year project
0 stars 0 forks source link

Simplify access to `AerendServer::dm` #92

Open donotturnoff opened 2 years ago

donotturnoff commented 2 years ago

Currently, to access the display manager I have to write AerendServer::the().get_display_manager(), which is verbose and can be improved upon.

donotturnoff commented 2 years ago

I shortened this to AerendServer::the().dm(), but I could possibly make the display manager, etc, static member variables of AerendServer to make this even shorter. This might go against RAII.