YouTho said:
"SaltPeter" <
[email protected]> wrote in message
I am monitoring our C++ applications during execution in our
production environment and get all information I need! We use AppMind
on the app side and Patrol on the console side. It probably work ok
with OpenView or Tivoli to.
BYe
Great, you are still off topic. Besides, writing log files and using shared
memory, which is how how AppMind works, has been within the C++ world way
before AppMind ever achieved birth. That has nothing to do with debugging
and its nothing magical since any C++ application can use an iostream to
achieve the same purpose (i'm willing to bet AppMind uses STL exclusively).
Lets face it, why write a library that only can work in Windows, like MFC?
Furthermore, while writing to an archive using MFC might seem like a magical
act to you, the STL library revolves around streams in a way infinitely more
fundamental than a stream might ever be to an MFC application (there is no
equivalent to an iostream in MFC). MFC is about Windows architectures, STL
is about all architectures.
MFC consists of wrapped structure APIs that are not C++. While MS calls them
"classes" they in fact are not C++ classes. Which is why your post is off
topic.
Furthermore, an MFC application requires an Application structure, a
framework, a document structure and even a View structure just to read input
and write to a file with feedback. None of which is portable to anything
non-Windows. The same job in STL requires about 20 lines of code and in some
cases even less. And it, unlike MFC, will work on virtually any platform.