summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/FileCache.h
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-11-17 15:17:24 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-11-17 15:17:24 +0000
commitd80f672079dc84b432cbc97327ef581728eed81f (patch)
tree7697f702c821b35c752fe0b3499eba8913161887 /cpp/src/IceGrid/FileCache.h
parentFix (diff)
downloadice-d80f672079dc84b432cbc97327ef581728eed81f.tar.bz2
ice-d80f672079dc84b432cbc97327ef581728eed81f.tar.xz
ice-d80f672079dc84b432cbc97327ef581728eed81f.zip
Fix
Diffstat (limited to 'cpp/src/IceGrid/FileCache.h')
-rw-r--r--cpp/src/IceGrid/FileCache.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/cpp/src/IceGrid/FileCache.h b/cpp/src/IceGrid/FileCache.h
new file mode 100644
index 00000000000..0a493b11c8b
--- /dev/null
+++ b/cpp/src/IceGrid/FileCache.h
@@ -0,0 +1,32 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#ifndef ICE_GRID_FILE_CACHE_H
+#define ICE_GRID_FILE_CACHE_H
+
+#include <IceUtil/Shared.h>
+#include <Ice/BuiltinSequences.h>
+
+namespace IceGrid
+{
+
+class FileCache : public IceUtil::Shared
+{
+public:
+
+ FileCache();
+
+ Ice::StringSeq read(const std::string&, Ice::Long, int, Ice::Long&);
+
+};
+typedef IceUtil::Handle<FileCache> FileCachePtr;
+
+};
+
+#endif