lyx_mirror/src/graphics/epstools.h
Georg Baum 9fe72c3501 Move readBB_from_PSFile() out of support (no code change),
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
2012-02-15 20:50:52 +00:00

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