Posts by Monfico • 61 points
5 posts
-
1
votes2
answers539
viewsA: How to include the headings of the gotoxy() and textcolor() functions
The functions you quoted are part of the conium. The error undefined reference is a link error, that is, you may not be linking to the library. Go to the Code::Blocks link counters and add one…
-
0
votes1
answer79
viewsA: Queue of tasks or my own solution for Thundering Herd?
From what I understand, according to your solution, when a connection arrives all threads wake up, and the one that has the ID provided by the controller accepts the connection. If that is the case,…
-
0
votes1
answer66
viewsA: Function does not add to list
In gestor::addavaria(), av is not being added to the list, ie, is missing a lav.push_back(av).
-
2
votes1
answer221
viewsA: How to use two Opengl viewports using QT?
What happens is that when the program window opens, the function is first called resizeGL, then the paintGL. In this case, the drawing will always be done on the last specified viewport, which is…
-
-1
votes2
answers179
views