00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef TAO_FAULT_TOLERANCE_SERVICE_H
00018 #define TAO_FAULT_TOLERANCE_SERVICE_H
00019
00020 #include "ace/pre.h"
00021
00022 #include "tao/TAO_Export.h"
00023
00024 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00025 # pragma once
00026 #endif
00027
00028 #include "tao/Basic_Types.h"
00029
00030 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00031
00032 class TAO_Service_Callbacks;
00033 class TAO_ORB_Core;
00034
00035
00036
00037
00038
00039
00040
00041
00042 class TAO_Export TAO_Fault_Tolerance_Service
00043 {
00044
00045 public:
00046
00047 TAO_Fault_Tolerance_Service (void);
00048
00049
00050 ~TAO_Fault_Tolerance_Service (void);
00051
00052
00053 void init (TAO_ORB_Core *orb_core);
00054
00055
00056 TAO_Service_Callbacks *service_callback (void);
00057
00058 private:
00059
00060
00061 TAO_Service_Callbacks *ft_service_callback_;
00062 };
00063
00064 TAO_END_VERSIONED_NAMESPACE_DECL
00065
00066 #if defined (__ACE_INLINE__)
00067 # include "tao/Fault_Tolerance_Service.inl"
00068 #endif
00069
00070 #include "ace/post.h"
00071 #endif