]> git.lyx.org Git - features.git/blob - src/graphics/GraphicsCacheItem.h
Baruch's graphics-patch + minipage-support in tabular-cells.
[features.git] / src / graphics / GraphicsCacheItem.h
1 // -*- C++ -*-
2 /* This file is part of
3  * =================================================
4  * 
5  *          LyX, The Document Processor
6  *          Copyright 1995 Matthias Ettrich.
7  *          Copyright 1995-2000 The LyX Team.
8  *
9  *          This file Copyright 2000 Baruch Even
10  * ================================================= */
11
12 #ifndef GRAPHICSCACHEITEM_H
13 #define GRAPHICSCACHEITEM_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 class GraphicsCacheItem {
20 public:
21     ~GraphicsCacheItem() {}
22     
23 private:
24     GraphicsCacheItem() {}
25
26     friend class GraphicsCache;
27 };
28
29 #endif