lyx_mirror/src/LaTeXPackages.h
Georg Baum 0dee3eff18 Fix bug #4213: Change tracking support for tex2lyx.
Of course this will only work if output_changes was true when creating the
.tex file.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40139 a592a061-630c-0410-9148-cb99ea01b6c8
2011-11-06 17:03:59 +00:00

42 lines
791 B
C++

// -*- C++ -*-
/**
* \file LaTeXPackages.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bjønnes
* \author Jean-Marc Lasgouttes
*
* Full author contact details are available in file CREDITS.
*/
#ifndef LATEXPACKAGES_H
#define LATEXPACKAGES_H
#include <string>
#include <set>
namespace lyx {
/** The list of avilable LaTeX packages
*/
class LaTeXPackages {
public:
/// Which of the required packages are installed?
static void getAvailable();
/// Is the (required) package available?
static bool isAvailable(std::string const & name);
private:
/// The available (required) packages
typedef std::set<std::string> Packages;
///
static Packages packages_;
};
} // namespace lyx
#endif