]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormTabularCreate.h
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / FormTabularCreate.h
index 478cb5950e8783089570795a3b9fd47724437ebf..61f64dde2c3aed268c424d05a046fc947758f064 100644 (file)
@@ -1,20 +1,21 @@
 // -*- C++ -*-
 /**
  * \file FormTabularCreate.h
- * Copyright 1995 Matthias Ettrich
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
  * \author Jürgen Vigna
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMTABULARCREATE_H
 #define FORMTABULARCREATE_H
 
+#include "FormDialogView.h"
 
-#include "FormBase.h"
+namespace lyx {
+namespace frontend {
 
 class ControlTabularCreate;
 struct FD_tabular_create;
@@ -23,10 +24,10 @@ struct FD_tabular_create;
     Dialog.
  */
 class FormTabularCreate :
-       public FormCB<ControlTabularCreate, FormDB<FD_tabular_create> > {
+       public FormController<ControlTabularCreate, FormView<FD_tabular_create> > {
 public:
        ///
-       FormTabularCreate();
+       FormTabularCreate(Dialog &);
 private:
        /// Apply from dialog
        virtual void apply();
@@ -36,4 +37,7 @@ private:
        virtual void update() {};
 };
 
+} // namespace frontend
+} // namespace lyx
+
 #endif // FORMTABULARCREATE