Open donotturnoff opened 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.
AerendServer::the().get_display_manager()
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.
AerendServer::the().dm()
AerendServer
Currently, to access the display manager I have to write
AerendServer::the().get_display_manager()
, which is verbose and can be improved upon.