/usr/include/boost/statechart/termination.hpp is in libboost1.65-dev 1.65.1+dfsg-0ubuntu5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | #ifndef BOOST_STATECHART_TERMINATION_HPP_INCLUDED
#define BOOST_STATECHART_TERMINATION_HPP_INCLUDED
//////////////////////////////////////////////////////////////////////////////
// Copyright 2002-2006 Andreas Huber Doenni
// Distributed under the Boost Software License, Version 1.0. (See accompany-
// ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//////////////////////////////////////////////////////////////////////////////
#include <boost/statechart/result.hpp>
namespace boost
{
namespace statechart
{
class event_base;
//////////////////////////////////////////////////////////////////////////////
template< class Event >
class termination
{
public:
//////////////////////////////////////////////////////////////////////////
// The following declarations should be private.
// They are only public because many compilers lack template friends.
//////////////////////////////////////////////////////////////////////////
template< class State, class EventBase, class IdType >
static detail::reaction_result react(
State & stt, const EventBase &, const IdType & eventType )
{
if ( eventType == Event::static_type() )
{
return detail::result_utility::get_result( stt.terminate() );
}
else
{
return detail::no_reaction;
}
}
};
template<>
class termination< event_base >
{
public:
//////////////////////////////////////////////////////////////////////////
// The following declarations should be private.
// They are only public because many compilers lack template friends.
//////////////////////////////////////////////////////////////////////////
template< class State, class EventBase, class IdType >
static detail::reaction_result react(
State & stt, const EventBase &, const IdType & )
{
return detail::result_utility::get_result( stt.terminate() );
}
};
} // namespace statechart
} // namespace boost
#endif
|