]> git.lyx.org Git - lyx.git/blobdiff - src/converter.C
Add a Buffer::fully_loaded member function, returning true only when
[lyx.git] / src / converter.C
index 1f8c880bc99d9140533e2210ade1bb7855a2afd1..370843056bf2a18ce44abe252813bc62dd0746c0 100644 (file)
 #include <config.h>
 
 #include "converter.h"
-#include "format.h"
+
 #include "buffer.h"
 #include "buffer_funcs.h"
-#include "LaTeX.h"
-#include "gettext.h"
+#include "bufferparams.h"
 #include "debug.h"
+#include "format.h"
+#include "gettext.h"
+#include "LaTeX.h"
 
 #include "frontends/Alert.h"
 
 #include "support/path.h"
 #include "support/systemcall.h"
 
-using namespace lyx::support;
+using lyx::support::AddName;
+using lyx::support::bformat;
+using lyx::support::ChangeExtension;
+using lyx::support::compare_ascii_no_case;
+using lyx::support::contains;
+using lyx::support::DirList;
+using lyx::support::GetExtension;
+using lyx::support::LibScriptSearch;
+using lyx::support::MakeRelPath;
+using lyx::support::OnlyFilename;
+using lyx::support::OnlyPath;
+using lyx::support::Path;
+using lyx::support::prefixIs;
+using lyx::support::QuoteName;
+using lyx::support::rename;
+using lyx::support::split;
+using lyx::support::subst;
+using lyx::support::Systemcall;
 
 using std::endl;
 using std::find_if;
-
+using std::string;
 using std::vector;