2023-03-29 10:51 PM
I would like to know FrontendApplication (FrontendApplication.cpp) belogns to which part in MVP architecture. I have no idea what is the duty of FronendApplcation and how to use it because most of the given examples FrontendApplication.cpp do not have any custom code
Thank you
2023-03-30 02:29 AM
Hello @CAbey.1,
FrontendApplication is a reference to the MVPApplication instance.
This FrontendApplication is contained inside the MVPHeap, which is used to obtain the memory storage areas for presenters, screens, transitions, and the concrete application.
If you want to understand concretely what you can use this file for, I strongly recommend you to take a look at the TouchGFX documentation, especially the articles about Dynamic bitmaps, Bitmap caching, and Binary fonts.
Hope that helps.
/Yoann
2023-04-06 11:26 PM
Thank you very much for the answer. I'll go through them