summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/ThreadStrategyORBControl.cpp
blob: bdd833456cd92fd407d38585194e83a3fe5ac541 (plain)
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
// -*- C++ -*-
#include "tao/PortableServer/ThreadStrategyORBControl.h"
#include "ace/Log_Msg.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO
{
  namespace Portable_Server
  {
    int
    ThreadStrategyORBControl::enter ()
    {
      return 0;
    }

    int
    ThreadStrategyORBControl::exit ()
    {
      return 0;
    }
  }
}

TAO_END_VERSIONED_NAMESPACE_DECL