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. Introduction in Qwt
Forum Update on Monday, May 27th 2025

Introduction in Qwt

Scheduled Pinned Locked Moved General and Desktop
qwtc++plotbegginer
4 Posts 3 Posters 1.1k Views
  • 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.
  • W Offline
    W Offline
    WLOrion
    wrote on 24 Mar 2021, 15:07 last edited by
    #1

    Hi,

    I'm looking for any tutorial in internet for introduce to me Qwt libraries.

    I was seeing the examples, but it is very confuse in majority of cases. I don't understand how the construct of many classes works, because this error keeps showing up:

    error: allocating a object of abstract class type '<some_qwt_class>'
    note: unimplemented pure virtual method '<some_variable>' in '<some_qwt_class>'
    

    For many ways a tried of contruct a new object of some classes of Qwt.

    Best Regards,
    WLOrion

    J 1 Reply Last reply 24 Mar 2021, 15:09
    0
    • W WLOrion
      24 Mar 2021, 15:07

      Hi,

      I'm looking for any tutorial in internet for introduce to me Qwt libraries.

      I was seeing the examples, but it is very confuse in majority of cases. I don't understand how the construct of many classes works, because this error keeps showing up:

      error: allocating a object of abstract class type '<some_qwt_class>'
      note: unimplemented pure virtual method '<some_variable>' in '<some_qwt_class>'
      

      For many ways a tried of contruct a new object of some classes of Qwt.

      Best Regards,
      WLOrion

      J Offline
      J Offline
      jsulm
      Lifetime Qt Champion
      wrote on 24 Mar 2021, 15:09 last edited by jsulm
      #2

      @WLOrion said in Introduction in Qwt:

      error: allocating a object of abstract class type '<some_qwt_class>'

      You are trying to create an instance of an abstract class (a class with pure virtual methods). This is not possible. You have to subclass this class and implement all pure virtual methods and use this class instead of the abstract class.

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      1 Reply Last reply
      0
      • W Offline
        W Offline
        WLOrion
        wrote on 24 Mar 2021, 16:40 last edited by
        #3

        @jsulm Thanks for reply.

        I didn't know this behavior of the Qwt Classes. Thanks for explanation.
        But i'm still looking for introductory material to support me, even though of some classes depending only my implementation.

        Best Regards,
        WLOrion

        1 Reply Last reply
        0
        • S Offline
          S Offline
          SGaist
          Lifetime Qt Champion
          wrote on 24 Mar 2021, 19:36 last edited by
          #4

          Hi,

          @WLOrion said in Introduction in Qwt:

          I didn't know this behavior of the Qwt Classes.

          This is nothing Qwt specific, it's part of the C++ basics.

          As for tutorial, there's a nice online book that is in German but the author claims that online translator should give you a good enough result in your own language.

          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

          2/4

          24 Mar 2021, 15:09

          • Login

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