summaryrefslogtreecommitdiff
path: root/src/binder/inc/failurecache.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/binder/inc/failurecache.hpp')
-rw-r--r--src/binder/inc/failurecache.hpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/binder/inc/failurecache.hpp b/src/binder/inc/failurecache.hpp
new file mode 100644
index 0000000000..3dbc3f611e
--- /dev/null
+++ b/src/binder/inc/failurecache.hpp
@@ -0,0 +1,38 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+// ============================================================
+//
+// FailureCache.hpp
+//
+
+
+//
+// Defines the FailureCache class
+//
+// ============================================================
+
+
+#ifndef __BINDER__FAILURE_CACHE_HPP__
+#define __BINDER__FAILURE_CACHE_HPP__
+
+#include "failurecachehashtraits.hpp"
+
+namespace BINDER_SPACE
+{
+ class FailureCache : protected SHash<FailureCacheHashTraits>
+ {
+ private:
+ typedef SHash<FailureCacheHashTraits> Hash;
+ public:
+ FailureCache();
+ ~FailureCache();
+
+ HRESULT Add(/* in */ SString &assemblyNameorPath,
+ /* in */ HRESULT hrBindResult);
+ HRESULT Lookup(/* in */ SString &assemblyNameorPath);
+ void Remove(/* in */ SString &assemblyName);
+ };
+};
+
+#endif