mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
33 lines
567 B
C
33 lines
567 B
C
|
// -*- C++ -*-
|
||
|
/**
|
||
|
* \file epstools.h
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author Lars Gullik Bjønnes
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS.
|
||
|
*/
|
||
|
|
||
|
#ifndef LYX_EPSTOOLS_H
|
||
|
#define LYX_EPSTOOLS_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace lyx {
|
||
|
namespace support {
|
||
|
|
||
|
class FileName;
|
||
|
|
||
|
}
|
||
|
|
||
|
namespace graphics {
|
||
|
|
||
|
/// read the BoundingBox entry from a ps/eps-file
|
||
|
std::string const readBB_from_PSFile(support::FileName const & file);
|
||
|
|
||
|
} // namespace graphics
|
||
|
} // namespace lyx
|
||
|
|
||
|
#endif
|