Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Undefined reference in abstract class implementation
Forum Updated to NodeBB v4.3 + New Features

Undefined reference in abstract class implementation

Scheduled Pinned Locked Moved Unsolved General and Desktop
16 Posts 5 Posters 4.6k Views 3 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Christian EhrlicherC Offline
    Christian EhrlicherC Offline
    Christian Ehrlicher
    Lifetime Qt Champion
    wrote on last edited by
    #4

    But then you have to link against interface lib in sonyviscacamera.pro since the interface lib containst the implementation of you functions. If you won't create a separate interface lib you should make the functions inline as you did it in your test.

    Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
    Visit the Qt Academy at https://academy.qt.io/catalog

    1 Reply Last reply
    0
    • P Offline
      P Offline
      Patrick Wright
      wrote on last edited by
      #5

      Could you clarify what you mean? I thought the LIBS line in sonyviscacamera.pro was what told the compiler to link against the .a library file that was created by interface.pro. Is it bad practice to link against a library when defining abstract classes/interfaces?

      1 Reply Last reply
      0
      • Christian EhrlicherC Offline
        Christian EhrlicherC Offline
        Christian Ehrlicher
        Lifetime Qt Champion
        wrote on last edited by
        #6

        Ah, I did not saw '-linterface' - not using qmake that often... are you sure you're creating a static interface lib?

        Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
        Visit the Qt Academy at https://academy.qt.io/catalog

        1 Reply Last reply
        0
        • P Offline
          P Offline
          Patrick Wright
          wrote on last edited by
          #7

          Yep! If I navigate to my build directory I have libinterface.a under /interface/debug/ and libsonyviscacamera.a under /interface/debug. I would assume that the sonyviscacamera library is able to link against the interface project successfully because it builds the library with no problems (but I don't fully understand how the linker works). Only when I try to build the complete project does this issue occur.

          That's why this is such a confusing issue. And, as I said, it was working just fine until I made a small change to the structure of the interface...

          1 Reply Last reply
          0
          • Christian EhrlicherC Offline
            Christian EhrlicherC Offline
            Christian Ehrlicher
            Lifetime Qt Champion
            wrote on last edited by
            #8

            @Patrick-Wright said in Undefined reference in abstract class implementation:

            LIBS += -L$$OUT_PWD/../interface/release/ -linterface

            You're using the release interface lib here, not the debug one.

            Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
            Visit the Qt Academy at https://academy.qt.io/catalog

            1 Reply Last reply
            0
            • P Offline
              P Offline
              Patrick Wright
              wrote on last edited by
              #9

              I almost thought that might have been the solution; a dumb mistake! But it may actually just be a typo since the .pro contents I sent were shortened. This is the actual, complete sonyviscacamera.pro file:

              QT       -= gui
              QT += widgets
              
              TARGET = sonyviscacamera
              TEMPLATE = lib
              CONFIG += staticlib
              
              DEFINES += QT_DEPRECATED_WARNINGS
              
              SOURCES += \
                      sonyviscacamera.cpp \
                  sonyviscacamerainfo.cpp \
                  sonyviscacamerainfowidget.cpp
              HEADERS += \
                      sonyviscacamera.h \
                  sonyviscacamerainfo.h \
                  sonyviscacamerainfowidget.h
              
              win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../interface/release/ -linterface
              else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../interface/debug/ -linterface
              else:unix: LIBS += -L$$OUT_PWD/../interface/ -linterface
              
              INCLUDEPATH += $$PWD/../interface
              DEPENDPATH += $$PWD/../interface
              
              win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../interface/release/libinterface.a
              else:win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../interface/debug/libinterface.a
              else:win32:!win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../interface/release/interface.lib
              else:win32:!win32-g++:CONFIG(debug, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../interface/debug/interface.lib
              else:unix: PRE_TARGETDEPS += $$OUT_PWD/../interface/libinterface.a
              
              FORMS += \
                  sonyviscacamerainfowidget.ui
              

              I think the if/else statement correctly chooses the debug or release version.

              1 Reply Last reply
              0
              • Christian EhrlicherC Offline
                Christian EhrlicherC Offline
                Christian Ehrlicher
                Lifetime Qt Champion
                wrote on last edited by
                #10

                I'm not very familar with qmake (mostly because I don't want to take care for such stuff like here - the buildsystem must know the correct paths). What you can do is to remove the release interface.a file to see if you get a linker error. Or you can take a look at the linker line to see if it pick up the correct interface.a file.

                Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
                Visit the Qt Academy at https://academy.qt.io/catalog

                1 Reply Last reply
                2
                • P Offline
                  P Offline
                  Patrick Wright
                  wrote on last edited by
                  #11

                  I checked the link command line and it is using the correct library paths.

                  I am looking more closely at what I am trying to do and am wondering if this is do to the fact that SonyViscaCamera is both a QObject and an AbstractCamera. Maybe someone could explain in more detail how multiple inheritance would work in this case. i want to inherit QObject because my camera is going to make use of signals and slots. I also inherit my interface because that is how I define the standard interface for a camera. What I am wondering is, would it be better to make AbstractCamera inherit from QObject then have SonyViscaCamera inherit from Abstract Camera?

                  I ask because I flipped the order of inheritance as such

                  class SonyViscaCamera : public AbstractCamera, public QObject
                  

                  and now I get the following (different) error:

                  "'staticmetaObject' is not a member of 'AbstractCamera'"
                  
                  kshegunovK 1 Reply Last reply
                  0
                  • P Offline
                    P Offline
                    Patrick Wright
                    wrote on last edited by Patrick Wright
                    #12

                    Also, the whole problem is solved if I simply make void setPort(AbstractPort *port) in AbstractCamera NOT virtual. This leads me to believe there is definately something wrong with my understanding of multiple inheritance in this case... I know what I want to accomplish, but now am unsure how to go about that. I made setPort() virtual so that sub classes could override it if they needed to.

                    1 Reply Last reply
                    0
                    • SGaistS Offline
                      SGaistS Offline
                      SGaist
                      Lifetime Qt Champion
                      wrote on last edited by
                      #13

                      Hi,

                      What code change did trigger these errors ?

                      Interested in AI ? www.idiap.ch
                      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                      1 Reply Last reply
                      1
                      • P Offline
                        P Offline
                        Patrick Wright
                        wrote on last edited by
                        #14

                        I made AbstractCamera abstract because I know that every camera will contain a reference to an AbstractPort, so rather than have every subclass implement the same code, I added that as a member function (and variable) to AbstractCamera. The rest of the methods are pure virtual because every subclass will have an independent implementation. The change which caused the error was when I made setPort in AbstractCamera virtual so that sub classes could override this method if needed.

                        I am wondering now if it would be more intelligent to just make every method pure virtual and have the sub class implement the setPort method as well... Would that be the best option?

                        1 Reply Last reply
                        0
                        • P Patrick Wright

                          I checked the link command line and it is using the correct library paths.

                          I am looking more closely at what I am trying to do and am wondering if this is do to the fact that SonyViscaCamera is both a QObject and an AbstractCamera. Maybe someone could explain in more detail how multiple inheritance would work in this case. i want to inherit QObject because my camera is going to make use of signals and slots. I also inherit my interface because that is how I define the standard interface for a camera. What I am wondering is, would it be better to make AbstractCamera inherit from QObject then have SonyViscaCamera inherit from Abstract Camera?

                          I ask because I flipped the order of inheritance as such

                          class SonyViscaCamera : public AbstractCamera, public QObject
                          

                          and now I get the following (different) error:

                          "'staticmetaObject' is not a member of 'AbstractCamera'"
                          
                          kshegunovK Offline
                          kshegunovK Offline
                          kshegunov
                          Moderators
                          wrote on last edited by
                          #15

                          @Patrick-Wright said in Undefined reference in abstract class implementation:

                          I ask because I flipped the order of inheritance as such

                          Not allowed. QObject must always go first due to moc not being smart enough.

                          My advice: Inspect the symbols in the interface library and make sure everything that is supposed to be there is there. I imagine there was some problem with it if the linker's complaining (the linker is a rather simple program).

                          I am wondering now if it would be more intelligent to just make every method pure virtual and have the sub class implement the setPort method as well... Would that be the best option?

                          That is up to you. Should work either way, though.

                          Read and abide by the Qt Code of Conduct

                          1 Reply Last reply
                          3
                          • Christian EhrlicherC Christian Ehrlicher

                            Did you really add abstractcamera.cpp to the sources list so it gets compiled? I would guess it's not the case.

                            P Offline
                            P Offline
                            prashant.qt.developer
                            wrote on last edited by
                            #16

                            @Christian-Ehrlicher This is the solution. Thank you.

                            1 Reply Last reply
                            0

                            • Login

                            • Login or register to search.
                            • First post
                              Last post
                            0
                            • Categories
                            • Recent
                            • Tags
                            • Popular
                            • Users
                            • Groups
                            • Search
                            • Get Qt Extensions
                            • Unsolved