]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/gtk/GPrint.h
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / gtk / GPrint.h
index a296335986695e63d5480fbb3f5f56a8a45aa5f7..2b954399c5722ce3bb5777066add563a61c0e013 100644 (file)
@@ -1,20 +1,27 @@
 // -*- C++ -*-
-/*
- * /file GPrint.h
+/**
+ * \file GPrint.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Huang Ying
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef GPRINT_H
 #define GPRINT_H
 
-#include "LString.h"
 #include "GViewBase.h"
 
+namespace lyx {
+namespace frontend {
+
 class ControlPrint;
 
-class GPrint : public GViewCB<ControlPrint, GViewGladeB>
-{
+class GPrint : public GViewCB<ControlPrint, GViewGladeB> {
 public:
-       GPrint(Dialog & parent, string title = "Print Document");
+       GPrint(Dialog & parent, std::string const & title = "Print Document");
 private:
        virtual void apply();
        virtual void update();
@@ -39,5 +46,7 @@ private:
        Gtk::Entry * toEntry_;
 };
 
-#endif
+} // namespace frontend
+} // namespace lyx
 
+#endif