summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Topology_Object.inl
blob: 6c2c3b883965bd2e9b131c7144549825522867c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// $Id$
namespace TAO_NOTIFY
{
  ACE_INLINE
  bool
  Topology_Object::is_changed () const
  {
    return this->self_changed_ | this->children_changed_;
  }

  ACE_INLINE
  bool
  Topology_Parent::child_change (ACE_ENV_SINGLE_ARG_DECL)
  {
    this->children_changed_ = true;
    return send_change (ACE_ENV_SINGLE_ARG_PARAMETER);
  }

} // namespace TAO_NOTIFY