mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
9fe72c3501
since it soon will need to use the Formats class. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40757 a592a061-630c-0410-9148-cb99ea01b6c8
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
|