blob: be758b132ebd107dff8aa068e583edcb4638d6fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// **********************************************************************
//
// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
//
// **********************************************************************
#include <Ice/Connector.h>
using namespace std;
using namespace Ice;
using namespace IceInternal;
Connector::~Connector()
{
// Out of line to avoid weak vtable
}
IceUtil::Shared* IceInternal::upCast(Connector* p) { return p; }
|