X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fimporter.h;h=7d62799cabd20e6034281f3c9069b3bdd7d1f55c;hb=6c2e78e12855d8661eb289ded3dc8722748863b8;hp=f00be23d410f77a77f92ca7d25dc3051b164db5b;hpb=99d1627a471b92f403598d03dfc861ddc3c11be0;p=lyx.git diff --git a/src/importer.h b/src/importer.h index f00be23d41..7d62799cab 100644 --- a/src/importer.h +++ b/src/importer.h @@ -1,17 +1,22 @@ // -*- C++ -*- /** * \file importer.h - * Copyright 1995-2002 the LyX Team - * Read the file COPYING + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * * \author unknown + * \author Jean-Marc Lasgouttes + * \author John Levon + * + * Full author contact details are available in file CREDITS. */ #ifndef IMPORTER_H #define IMPORTER_H +#include #include -#include "LString.h" + class LyXView; class Format; @@ -20,8 +25,8 @@ class Importer { public: /// static - bool Import(LyXView * lv, string const & filename, - string const & format); + bool Import(LyXView * lv, std::string const & filename, + std::string const & format); /// static @@ -29,6 +34,6 @@ public: private: /// static - std::vector const Loaders(); + std::vector const Loaders(); }; #endif