April 19th, 2021
- Continue work on Camera Manager Implementation
- Abstract classes in #cpp are a bit more implicit than other languages
- https://en.cppreference.com/w/cpp/language/abstract_class
- A
class
/struct
becomes abstract when it has a virtual member that is= 0
making it a pure virtual. Any calls to this should fail at runtime. - Example from the above link:
|
|
- Understood a bit more about how the camera manager framework is put together. More notes over at ue-cameras