Question on Boost::statechart library orthogonal regions
Hi All,
Apologies if there are multiple psoting of this message.
I want to use the boost::statechart library. However i encountered a small
problem with using the orthogonal regions. In the statechart
tutorial, every class declaration is put into one file, however i would like
to put each class declaration into separate files.
An example ( boost specific headers are omitted for readability reasons,
also .cpp files which contain only test functions):
A.h
#include "Machine.h"
class C;
class B;
class A: public sc::simple_state< A, Machine, mpl::list< C, B > > {};
C.h
#include "A.H"
class C: public sc::simple_state
Hi Serena
I want to use the boost::statechart library. However i encountered a small problem with using the orthogonal regions. In the statechart tutorial, every class declaration is put into one file, however i would like to put each class declaration into separate files. [example + error snipped]
I don't see anything suspicious, could you please attach the full source? If it's more than 10KB please send it to me by private email. Thanks, -- Andreas Huber When replying by private email, please remove the words spam and trap from the address shown in the header.
Hi Andreas,
2007/4/26, Andreas Huber
Hi Serena
I want to use the boost::statechart library. However i encountered a small problem with using the orthogonal regions. In the statechart tutorial, every class declaration is put into one file, however i would like to put each class declaration into separate files. [example + error snipped]
I don't see anything suspicious, could you please attach the full source? If it's more than 10KB please send it to me by private email.
Attached you can find the complete source code of the program. Thanks very much for your cooperation. Kind regards Serena Thanks,
-- Andreas Huber
When replying by private email, please remove the words spam and trap from the address shown in the header.
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
Serena Fritsch wrote:
Hi All, Apologies if there are multiple psoting of this message. I want to use the boost::statechart library. However i encountered a small problem with using the orthogonal regions. In the statechart tutorial, every class declaration is put into one file, however i would like to put each class declaration into separate files. [code & error snipped]
The ultimate problem lies in in Main.cpp (received by private email):
Andreas Huber wrote:
The ultimate problem lies in in Main.cpp (received by private email):
:-) This should be: "The root problem..." -- Andreas Huber When replying by private email, please remove the words spam and trap from the address shown in the header.
participants (2)
-
Andreas Huber
-
Serena Fritsch