diff options
Diffstat (limited to 'cpp/src/Ice/MessageAuthenticatorF.h')
-rw-r--r-- | cpp/src/Ice/MessageAuthenticatorF.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/cpp/src/Ice/MessageAuthenticatorF.h b/cpp/src/Ice/MessageAuthenticatorF.h new file mode 100644 index 00000000000..ed81c123004 --- /dev/null +++ b/cpp/src/Ice/MessageAuthenticatorF.h @@ -0,0 +1,38 @@ +// **********************************************************************
+//
+// Copyright (c) 2002
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+#ifndef ICE_MESSAGE_AUTHENTICATOR_F_H
+#define ICE_MESSAGE_AUTHENTICATOR_F_H
+
+#include <Ice/Handle.h>
+
+namespace IceSecurity
+{
+
+namespace SecureUdp
+{
+
+class MessageAuthenticator;
+typedef IceInternal::Handle<MessageAuthenticator> MessageAuthenticatorPtr;
+
+}
+
+}
+
+namespace IceInternal
+{
+
+void incRef(::IceSecurity::SecureUdp::MessageAuthenticator*);
+void decRef(::IceSecurity::SecureUdp::MessageAuthenticator*);
+
+}
+
+#endif
+
|