Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Special Interest Groups
  3. C++ Gurus
  4. what is meaning of this statement app::print::WaybillCollection_Report in c++ ?
Forum Updated to NodeBB v4.3 + New Features

what is meaning of this statement app::print::WaybillCollection_Report in c++ ?

Scheduled Pinned Locked Moved Solved C++ Gurus
6 Posts 3 Posters 601 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.
  • Q Offline
    Q Offline
    Qt embedded developer
    wrote on last edited by
    #1

    i am developing code for already developed project. where i find this type of statement

    app::print::WaybillCollection_Report
    

    can any body elaborate what is meaning of this and when this type of statement get used ?

    jsulmJ 1 Reply Last reply
    0
    • Q Qt embedded developer

      i am developing code for already developed project. where i find this type of statement

      app::print::WaybillCollection_Report
      

      can any body elaborate what is meaning of this and when this type of statement get used ?

      jsulmJ Offline
      jsulmJ Offline
      jsulm
      Lifetime Qt Champion
      wrote on last edited by
      #2

      @Qt-embedded-developer Do you know what namespaces are in C++?
      Also, why don't you search in the source code for WaybillCollection_Report?
      Most probably WaybillCollection_Report is a class in app::print namespace...

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

      Q 1 Reply Last reply
      5
      • jsulmJ jsulm

        @Qt-embedded-developer Do you know what namespaces are in C++?
        Also, why don't you search in the source code for WaybillCollection_Report?
        Most probably WaybillCollection_Report is a class in app::print namespace...

        Q Offline
        Q Offline
        Qt embedded developer
        wrote on last edited by Qt embedded developer
        #3

        @jsulm

        1] no
        2] because i want to know application of this statement .

        when i am passing this statement in other class constructor it return me 4 value

        app::transaction::step::CollectionReportStep objCollectionReportStep(pTransactionData,app::print::WaybillCollection_Report);
        	int retVal=objCollectionReportStep.execute();
        
        Christian EhrlicherC 1 Reply Last reply
        0
        • Q Qt embedded developer

          @jsulm

          1] no
          2] because i want to know application of this statement .

          when i am passing this statement in other class constructor it return me 4 value

          app::transaction::step::CollectionReportStep objCollectionReportStep(pTransactionData,app::print::WaybillCollection_Report);
          	int retVal=objCollectionReportStep.execute();
          
          Christian EhrlicherC Offline
          Christian EhrlicherC Offline
          Christian Ehrlicher
          Lifetime Qt Champion
          wrote on last edited by
          #4

          @Qt-embedded-developer said in what is meaning of this statement app::print::WaybillCollection_Report in c++ ?:

          it return me 4 value

          And what should we do with such kind of information? What's your actual question? We don't know the library you're using so either ask the developer of this library or read it's documentation to determine what '4' stands for.

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

          Q 1 Reply Last reply
          1
          • Christian EhrlicherC Christian Ehrlicher

            @Qt-embedded-developer said in what is meaning of this statement app::print::WaybillCollection_Report in c++ ?:

            it return me 4 value

            And what should we do with such kind of information? What's your actual question? We don't know the library you're using so either ask the developer of this library or read it's documentation to determine what '4' stands for.

            Q Offline
            Q Offline
            Qt embedded developer
            wrote on last edited by
            #5

            @Christian-Ehrlicher i have edited my question

            Q 1 Reply Last reply
            0
            • Q Qt embedded developer

              @Christian-Ehrlicher i have edited my question

              Q Offline
              Q Offline
              Qt embedded developer
              wrote on last edited by
              #6

              @Qt-embedded-developer i got the answer why this get used like my statement

              because of multiple namespace .

              namespace app
              {
              
              namespace print
              {
              
              typedef enum _PrintType
              {
              	Unknown = 0,
              	Paper_Feed,
              	Ticket_Print,
              	StationList_Report,
              	WaybillCollection_Report,
              	TripWiseCollection_Report,
              	StationWiseFare_Report,
              	StageWiseFare_Report,
              
              1 Reply Last reply
              1

              • Login

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