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

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

#ifndef Object1_I_H
#define Object1_I_H

#include "testSchedS.h"

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

/**
 * @class Object1_i
 *
 * @brief This class is used to test the RTCORBA 1.0 Scheduling Service
 *
 */
class Object1_impl : public POA_testSched::Object1
{
  public:
    Object1_impl();

    virtual ~Object1_impl();

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

#endif /* Object1_I_H  */