Error "Unterminated conditional directive" in cross-referencing headers

There are two classes that are related to each other in their headers:

PlotMarker

#ifndef PLOTMARKER_H #define PLOTMARKER_H #include <QObject> #include "plotter.h" class Plotter; class PlotMarker : public QObject { // ... Plotter* m_attachedPlot; // ... }; #endif // PLOTMARKER_H 

Plotter

#ifndef PLOTTER_H #define PLOTTER_H // ... #include "plotmarker.h" // ... class PlotMarker; class Plotter : public QQuickPaintedItem { // ... QLinkedList<PlotMarker*> m_markerList; // ... }; #endif // PLOTTER_H 

The program is compiled well, but it's got a error error: unterminated conditional directive in #ifndef and the code of classes in the IDE isn't highlighted because of it.

If I remove #include "plotter.h" in PlotMarker's header or #include "plotmarker.h" in Plotter's header, Qt Creator highlights the code as usual, but the compilating fails because of errors about invalid use of incomplete type.

Could you please tell me what's wrong? I think it's because of wrong headers cross-referencing, but I ran into this and it didn't help me.

1

3 Answers

The problem is solved.

I just moved one of #include from the header to the source file, and it has worked.

plotmarker.h

#ifndef PLOTMARKER_H #define PLOTMARKER_H #include <QObject> class Plotter; class PlotMarker : public QObject { // ... Plotter* m_attachedPlot; // ... }; #endif // PLOTMARKER_H 

// ...

plotmarker.cpp

#include "plotmarker.h" #include "plotter.h" // ... 
3

There is a fundamental design flaw. For example

#include "b.h" class A { B b; // B is an object, can't be forward declared }; 

a.h header file above

#include "a.h" class B { A* a // A is an object, can't be forward declared }; 

b.h header file above

This is a Circular Dependencies

The compiler will do the following:

#include "a.h" // start compiling a.h #include "b.h" // start compiling b.h #include "a.h" // compilation of a.h skipped because it's guarded // resume compiling b.h class B { A* a }; // <--- ERROR, A is undeclared 
1

I've just gotten "unterminated conditional directive" in #ifndef and "invalid preprocessing directive" in #end.

I've just added "if" after #end(edit "#end" to "#endif"), that error is fixed.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like