mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
8a766b722d
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1451 a592a061-630c-0410-9148-cb99ea01b6c8
37 lines
519 B
C++
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
|