Thanks a lot for the replies.
Farquad wrote:
Firstly, the "Containers" are built into Rhapsody so I'm wondering why you are creating a Container class.
I just have to receive and parse some UDP-signals. And therefore I have implemented some classes. One for each signal. They are very simple and just have to keep a lot of char and float values.
Farquad wrote:
... Have you an opportunity to get any training?
No, I haven't got the oppurtunity to get any training. I'll have to teach everything myself.
How exactly do I start the OX-framework? Do I have to initialize it?
If I used Rhapsody to implement a Class like:
class A
{
...
int a; // guarded attribute
int getA();
}
Do I just init the class in my main()? Is the getter already guarded by a mutex?
int main(int argc, char* argv[])
{
A* a = new A();
a->getA();
}
Sorry about the stupid questions. I just need a point to get started.
I'll go on ready reference manuals.