lyx_mirror/src/frontends/xforms/FormVCLog.h
Jean-Marc Lasgouttes 8a766b722d Move LaTeX and VC logs to GUI-I on xforms
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1451 a592a061-630c-0410-9148-cb99ea01b6c8
2001-02-06 17:41:42 +00:00

37 lines
519 B
C++

// -*- C++ -*-
/*
* FormVCLog.h
*
* (C) 2001 LyX Team
* John Levon, moz@compsoc.man.ac.uk
*/
#ifndef FORMVCLOG_H
#define FORMVCLOG_H
#include "FormBase.h"
#include "FormBrowser.h"
#ifdef __GNUG__
#pragma interface
#endif
class LyXView;
class Dialogs;
/**
* This class provides an XForms implementation of the Version Control
* log viewer
*/
class FormVCLog : public FormBrowser {
public:
FormVCLog(LyXView *, Dialogs *);
~FormVCLog();
private:
/// Update the dialog.
virtual void update();
};
#endif