Link: @CplusplusQt Embedded: @EMBCpp • Allowed Topics: C++ and everything related to Qt • Use only English • No Private Message without asking user's permission • No NSFW • No Spam • No unauthorized Bots • No Offtopic • No Self Promotions
Can you print the values (instead of creating your object)?
Читать полностью…But why?? Why would a single line make Qt creator go nuts?
Читать полностью…hey guys. I really don't know how to formulate this question correctly.. But here's what's happening. I'm writing a non-Qt program. It's a bit heavy on computations, but I'm not doing any multithreading and I'm not using external libraries so no multithreading should be happening at all. Likewise, I'm not working with files, etc. Just vectors and algorithms revolving these vectors. But these vectors aren't getting big either. Now, in main.cpp when I run my code it all works fine, then if at the bottom I add the following snippet:
SimsGenerator<n+m> simsC;
qtc.process_stub: Inferior error: QProcess::Crashed "Process crashed"
Terminal process exited with code -1073741571
I was new in C program. Is there any channel please...🙏🙏
Читать полностью…Qt has other possibilities to handle auto variables....
Читать полностью…One situation I prevent using auto
for is functions parameters.
You can use a combination of MultiEffect
's opacity mask and ConicalGradient
.
https://doc.qt.io/qt-6/qml-qtquick-shapes-conicalgradient.html
Hi am new to qt i have some doubt how to use qface framework and how to create publisher / subscriber model is it really required IVI?
Читать полностью…So, given that these constants get messed up it's evident that the program would crash, I mean these constants litterally define the sizes of all the data structures I use.
Читать полностью…We can answer questions, but we will not do your homework for you.
Читать полностью…Beverage machine.
capacity: 20 drinks per compartment, 9 compartments per row, 8 rows.
drinks: 8 types
payment method: notes
payment method: coins
payment method: bank card
There is a number per row and per type of drink.
eg: row 1 = A box1 row1 = A1
keyboard on left or right side.
a container to hold the drink(s).
the drinks fall into a pyramid per row. first one on the left then one on the right
# # # # # # # # #
# # # # # # # # # ->
# # # # # # # # #
# # # # # # # # #
# # # # # # #
# # # # # # # # #
# # # # # # # # #
# # # # # # # # #
# # # # # # #
# # # # # # #
# # # # # # # # #
# # # # # # # # #
# # # # #
# # # # # # #
# # # # # # # # #
# # # # # # # # #
# # # # #
# # # # # # #
# # # # # # #
# # # # # # # # #
# # # # #
# # # # #
# # # # # # #
# # # # # # # # #
# # #
# # # # #
# # # # # # #
# # # # # # # # #
if only 1 row remains, a signal has been sent to the company that manages this beverage machine.
A man will then come and fill them in again.
User goes to the drinks machine and
use the keyboard to choose a drink (So a menu on your screen in C++)
there is a + on the keyboard and then the user can select several drinks one after the other.
Once his choice(s) have been made, the user must choose a payment method.
Coins -> too many: give the rest of the money back -> Coins correct
Coins -> too little: missing money questions (too much? too little? etc...) -> Coins correct
Coins -> correct treat: give drinks
Notes -> Bill scanner, validation -> return coins or perfect amount.
Bank card -> Connection with the bank -> bank validation -> enough money in the bank account (yes/no?) -> if yes then "debit" the total in the bank account otherwise ignore the transaction and notify the user that he can start again or use another payment method.
Beverage machine.
capacity: 20 drinks per compartment, 9 compartments per row, 8 rows.
drinks: 8 types
payment method: notes
payment method: coins
payment method: bank card
There is a number per row and per type of drink.
eg: row 1 = A box1 row1 = A1
keyboard on left or right side.
a container to hold the drink(s).
the drinks fall into a pyramid per row. first one on the left then one on the right
# # # # # # # # #
# # # # # # # # # ->
# # # # # # # # #
# # # # # # # # #
# # # # # # #
# # # # # # # # #
# # # # # # # # #
# # # # # # # # #
# # # # # # #
# # # # # # #
# # # # # # # # #
# # # # # # # # #
# # # # #
# # # # # # #
# # # # # # # # #
# # # # # # # # #
# # # # #
# # # # # # #
# # # # # # #
# # # # # # # # #
# # # # #
# # # # #
# # # # # # #
# # # # # # # # #
# # #
# # # # #
# # # # # # #
# # # # # # # # #
if only 1 row remains, a signal has been sent to the company that manages this beverage machine.
A man will then come and fill them in again.
User goes to the drinks machine and
use the keyboard to choose a drink (So a menu on your screen in C++)
there is a + on the keyboard and then the user can select several drinks one after the other.
Once his choice(s) have been made, the user must choose a payment method.
Coins -> too many: give the rest of the money back -> Coins correct
Coins -> too little: missing money questions (too much? too little? etc...) -> Coins correct
Coins -> correct treat: give drinks
Notes -> Bill scanner, validation -> return coins or perfect amount.
Bank card -> Connection with the bank -> bank validation -> enough money in the bank account (yes/no?) -> if yes then "debit" the total in the bank account otherwise ignore the transaction and notify the user that he can start again or use another payment method.
I was new in C program is there any channel please...🙏🙏
Читать полностью…It's a while I'm not dealing with Qt but I don't think it has something different to do with that. How else would you write auto a = s;
in Qt?
I do not see any rationale for not using it. I use auto wherever possible and never face any issues. We would like to hear why would you do that.
Читать полностью…The point/rule is that auto
can't deduce top-level const
. i
has a top-level const
while none of s
and pd
has that.