save_details_dialog.h
author Alpar Juttner <alpar@cs.elte.hu>
Fri, 10 Oct 2008 13:36:20 +0100
changeset 7 f227a74db59d
permissions -rw-r--r--
Update to compile with the latest LEMON (version 1.0 or [5e12d7734036])
     1 #ifndef SAVE_DETAILS_DIALOG
     2 #define SAVE_DETAILS_DIALOG
     3 
     4 #include <gtkmm/dialog.h>
     5 #include "save_details_widget.h"
     6 
     7 class SaveDetailsDialog : public Gtk::Dialog
     8 {
     9   private:
    10     SaveDetailsWidget SaveDetails;
    11   public:
    12     SaveDetailsDialog(MapStorage*);
    13 };
    14 
    15 #endif