summaryrefslogtreecommitdiff
path: root/apps/JAWS/server/VFS_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/JAWS/server/VFS_T.h')
-rw-r--r--apps/JAWS/server/VFS_T.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/apps/JAWS/server/VFS_T.h b/apps/JAWS/server/VFS_T.h
deleted file mode 100644
index a4061346f7a..00000000000
--- a/apps/JAWS/server/VFS_T.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#if !defined (VFS_T_H)
-#define VFS_T_H
-
-template <class LOCK>
-class JAWS_VFS_Node_Bucket
-{
-public:
- JAWS_VFS_Node_Bucket (int size = 1);
-
- JAWS_VFS_Node * find (char *URI);
-
-private:
- JAWS_VFS_Node_List bucket_;
-
- LOCK lock_;
-};
-
-#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
-#include "JAWS/server/VFS_T.cpp"
-#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
-
-#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
-#pragma implementation ("VFS_T.cpp")
-#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */
-
-#endif /* VFS_T_H */