No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
6 Posted Topics
Re: If you want someone to do your work for you there are other sites where you can hire people. If you want help here then you need to show your efforts and where you are stuck. | |
Re: There are plenty of classes around that abstract out file systems and directories. They take care of things like path separators, os directory calls, etc. If I remember all the following have something: Boost, ACE POCO, QT. On Linux you probably want to take a look at "inotify", which gives … | |
Re: I haven't used that compiler so this is a shot in the dark... Is your file extension .c? I wonder if it is complaining that it is trying to compile a C program but you are using CPP headers? | |
Re: You are on the right track. Hopefully this can advance your progress somewhat. [code=cplusplus] #include <iostream> #include <fstream> using namespace std; void printArray(char array[], int rows, int cols) { for (int i = 0; i < rows; ++i) { for (int j = 0; j < cols; ++j) { cout … | |
Re: So, if I understand this, basically you have a kind of log file that is written out by time stamp but which you need to put into signal order? If so, it seems like you need something like a map to group the data where the keys are the signals … | |
Re: [QUOTE=Zeking;499201]Hey there, I have been working with some functions from windows API and now I need to find similar set of functions for Linux. Actually I need functions for Linux that will pretty much do the same or similar thing. I have been searching on google trying "Linux API" , … |
The End.