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
This would make it easier to forward-declare the structs in a C++ header without including pl_mpeg.h from there, exposing it to the rest of the program.
Example my.hpp:
struct plm_frame_t; // trying to not include pl_mpeg.h here
class MyClass {
public:
void render( plm_frame_t *frame );
};
It would be helpful to change
into
This would make it easier to forward-declare the structs in a C++ header without including pl_mpeg.h from there, exposing it to the rest of the program.
Example my.hpp:
Example my.cpp:
The text was updated successfully, but these errors were encountered: