diff options
Diffstat (limited to 'cpp/src/IceGrid/FileCache.h')
-rw-r--r-- | cpp/src/IceGrid/FileCache.h | 32 |
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 |