You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Component::ComponentImpl, for instance, is declared using the class keyword. Yet, we only use public access. So, we could use struct instead of class (and thus not have to specify public access), as we do for Generator::GeneratorImpl for instance.
So, here, we want to replace all of our occurrences of class with struct when it comes to the private implementation of our various classes.
The text was updated successfully, but these errors were encountered:
Component::ComponentImpl
, for instance, is declared using theclass
keyword. Yet, we only usepublic
access. So, we could usestruct
instead ofclass
(and thus not have to specifypublic
access), as we do forGenerator::GeneratorImpl
for instance.So, here, we want to replace all of our occurrences of
class
withstruct
when it comes to the private implementation of our various classes.The text was updated successfully, but these errors were encountered: