$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [Boost Statechart Library] How to inherit reactions?
From: Philipp Bender (pbender_at_[hidden])
Date: 2012-02-18 03:18:24
> struct B : BaseState<...>
> {
> using BaseState<...>::react;
> boose::statechard::result react(...) {...}
> };
That solved my problem, thank you for that. I have not been aware of
this shaddowing by polymorphy.