- 
Add a forward declaration of library_class_1in header.h before using it.class library_class_1; class header { public: header(); void DoSomething(library_class_1 const& object_1); }
- 
Make sure to #includethe .h file that defineslibrary_class_1in header.cc.#include <librarry_class_1.h> void header::DoSomething(library_class_1 & object_1) { // Use object_1 ... }
0
solved Access predefined objects in header files