summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/time-date/Time_Date_i.cpp
blob: 8295c3d5e1070cde92e521f9583b1da826c9cc28 (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
// -*- C++ -*-
// $Id$
#include "Time_Date_i.h"
#include "tao/corba.h"

// Default constructor.

Time_Date_i::Time_Date_i (void)
{
  //no-op
}

// Default destructor.

Time_Date_i::~Time_Date_i (void)
{
  // no-op.
}

// Obtain the time and date in binary format.

void
Time_Date::bin_date (CORBA::Long_out time_date)
{
}

// Obtain the time and date in string format.

void 
Time_Date::str_date (CORBA::String_out time_date)
{

}