blob: b0003807d218b7d90b72fb4be1e4bade54d6930a (
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
|
#include "ace/INet/AuthenticationBase.h"
#if !defined (__ACE_INLINE__)
#include "ace/INet/AuthenticationBase.inl"
#endif
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
namespace ACE
{
namespace INet
{
AuthenticationBase::~AuthenticationBase ()
{
}
AuthenticatorBase::AuthenticatorBase ()
{
}
AuthenticatorBase::~AuthenticatorBase ()
{
}
}
}
ACE_END_VERSIONED_NAMESPACE_DECL
|