summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/RTCosScheduling/Object1_i.h
blob: 4e64ff1f1394c0220fd28009d090fcac984b84af (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
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
/* -*- C++ -*- */

//=============================================================================
/**
 *  @file    Object1_i.h
 *
 *  $Id$
 *
 *  @author Matt Murphy <murphym@cs.uri.edu>
 */
//=============================================================================

#ifndef Object1_I_H
#define Object1_I_H

#include "testSchedS.h"
//#include "tao/RTCORBA/RTCORBA.h"
//##include "ace/Task.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

//#include "ace/CORBA_macros.h"
//#include "tao/RTCORBA/Priority_Mapping_Manager.h"
//#include "tao/corba.h"
//#include "tao/ORB_Core.h"



/**
 * @class Object1_i
 *
 * @brief This class is used to test the RTCORBA 1.0 Scheduling Service
 *
 */


class Object1_impl : public POA_testSched::Object1,
                            PortableServer::RefCountServantBase
{
  public:
    Object1_impl()
      throw (CORBA::SystemException);

    virtual ~Object1_impl()
      throw (CORBA::SystemException);

    virtual void method1(const char *activity,
                         CORBA::Long seconds,
                         char *&output)
      throw (testSched::testSchedException);
};

#endif /* Object1_I_H  */