Search Results

0
votes
2answers
208 views

Real time video capture??

Hi all, Just as a hobby, I want to capture realtime video. The source of video for a start would be a web camera. I have one from logitech. What I am trying to do is make a custom window wi …
1
vote
3answers
167 views

What is the role of Magic Number in boot loading in Linux? [closed]

Hi all, I was going through the details of the linux boot process. It was understood that the primary boot loader resides in 512 byte image (program code + partition table). The 510 bytes c …
1
vote
3answers
534 views

Detecting memory leaks in C++ Qt combine?

Hi all, I have an application that interacts with external devices using serial communication. There are two versions of the device differing in their implementations. -->One is developed …
6
votes
9answers
443 views

Good Readings on Unix/Linux Socket Programming?

Hi all, though I haven't worked with sockets professionally, I find them interesting. I read some part of Unix Network Programming by Richard Stevens (considered to be the Bible I suppose a …
0
votes
2answers
107 views

processEvents And Memory Leak?

Hi all, NOTE: THE CODE PROVIDED JUST GIVES THE IDEA OF THE STRUCTURE OF THE APPLICATION I have a Qt application, interfacing with external hardware. The structure is such that the c …
-1
votes
3answers
103 views

Running the executable does nothing

Hi all, I was writing a sample example involving multiple files. The detailed code is as follows. main.cpp #include <algorithm> #include <iomanip> #incl …
0
votes
1answer
160 views

Passing Array of objects Composed of other objects as reference to Functions In C++?

Hi all, I have a function which calls itself 10 times a second. I am using QTimer for repeat calls. void DisplayClass::UpdateGuiWithData() { //miscellaneous code which is …
0
votes
0answers
69 views

Problem in Line Editor in Qt?

Hi all, I am trying to set the text of line editor in Qt on linux. It works for all but 2 line editors which for some strange reason don't display the text even when we set the text using …
0
votes
5answers
149 views

Deleting And Reconstructing Singleton in C++

Hi all, I have an application which runs on a controlling hardware connected with different sensors. On loading the application, it checks the individual sensors one by one to see whether t …
0
votes
3answers
46 views

Reopening a closed Piped read file descriptor?

Hi all, I have used pipes to facilitate interprocess communication. They work just fine. But in my scenario I want to close and reopen the read end of the file descriptor fd[0]. Does anyone …
3
votes

Programming resources for C++ in Linux

It is good that you are going in for a linux platform.It will help you to program as per the c/c++ standards. I would recommend vi/vim ----> text editor gcc -------> C com …