blob: 3ccf1d858f5838848ce705a73bca8e796c5bdba6 (
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
|
// **********************************************************************
//
// Copyright (c) 2002
// ZeroC, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
#include <IceUtil/IceUtil.h>
#include <Ice/Ice.h>
#include <TestI.h>
using namespace std;
using namespace Ice;
void
TestI::deactivate(const Current& current)
{
current.adapter->deactivate();
IceUtil::ThreadControl::sleep(IceUtil::Time::seconds(1));
}
string
CookieI::message() const
{
return "blahblah";
}
|