]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlRef.h
Removed // -*- C++ -*- from all .C files!
[lyx.git] / src / frontends / controllers / ControlRef.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ====================================================== 
4  *
5  *           LyX, The Document Processor
6  *
7  *           Copyright 2001 The LyX Team.
8  *
9  * ======================================================
10  *
11  * \file ControlRef.h
12  * \author Angus Leeming <a.leeming@ic.ac.uk>
13  */
14
15 #ifndef CONTROLREF_H
16 #define CONTROLREF_H
17
18 #ifdef __GNUG__
19 #pragma interface
20 #endif
21
22 #include "ControlCommand.h"
23
24 /** A controller for the Ref Dialog.
25  */
26 class ControlRef : public ControlCommand {
27 public:
28         ///
29         ControlRef(LyXView &, Dialogs &);
30
31         ///
32         std::vector<string> const getLabelList() const;
33         ///
34         void gotoRef(string const &) const;
35         ///
36         void gotoBookmark() const;
37 };
38
39 #endif // CONTROLREF_H