]> git.lyx.org Git - lyx.git/blob - src/graphics/epstools.h
Use call_once to ensure something is only called once
[lyx.git] / src / graphics / epstools.h
1 // -*- C++ -*-
2 /**
3  * \file epstools.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef LYX_EPSTOOLS_H
13 #define LYX_EPSTOOLS_H
14
15 #include <string>
16
17 namespace lyx {
18 namespace support {
19
20 class FileName;
21
22 }
23
24 namespace graphics {
25
26 /// read the BoundingBox entry from a ps/eps-file
27 std::string const readBB_from_PSFile(support::FileName const & file);
28
29 } // namespace graphics
30 } // namespace lyx
31
32 #endif