Nemiver  0.3
nmv-choose-overloads-dialog.h
Go to the documentation of this file.
1 //Author: Dodji Seketeli
2 /*
3  *This file is part of the Nemiver project
4  *
5  *Nemiver is free software; you can redistribute
6  *it and/or modify it under the terms of
7  *the GNU General Public License as published by the
8  *Free Software Foundation; either version 2,
9  *or (at your option) any later version.
10  *
11  *Nemiver is distributed in the hope that it will
12  *be useful, but WITHOUT ANY WARRANTY;
13  *without even the implied warranty of
14  *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15  *See the GNU General Public License for more details.
16  *
17  *You should have received a copy of the
18  *GNU General Public License along with Nemiver;
19  *see the file COPYING.
20  *If not, write to the Free Software Foundation,
21  *Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22  *
23  *See COPYRIGHT file copyright information.
24  */
25 #ifndef __NMV_CHOOSE_OVERLOADS_DIALOG_H__
26 #define __NMV_CHOOSE_OVERLOADS_DIALOG_H__
27 
28 #include <vector>
29 #include "nmv-dialog.h"
30 #include "nmv-i-debugger.h"
31 
32 NEMIVER_BEGIN_NAMESPACE (nemiver)
33 
34 class ChooseOverloadsDialog : public Dialog {
35  struct Priv;
36  SafePtr<Priv> m_priv;
37 
38 public:
40  (Gtk::Window &a_parent,
41  const UString &a_res_root_path,
42  const vector<IDebugger::OverloadsChoiceEntry> &a_entries);
43  virtual ~ChooseOverloadsDialog ();
44 
45  void set_overloads_choice_entries
46  (const vector<IDebugger::OverloadsChoiceEntry> &a_in);
47  const std::vector<IDebugger::OverloadsChoiceEntry>&
48  overloaded_functions () const;
49  void overloaded_function (int a_in) const;
50  void clear ();
51 
52 };//end ChooserOverloadsDialog
53 
54 NEMIVER_END_NAMESPACE (nemiver)
55 
56 #endif //__NMV_CHOOSE_OVERLOADS_DIALOG_H__
57 
nemiver
Definition: nmv-address.h:31
nemiver::common::UString
Definition: nmv-ustring.h:45
nmv-i-debugger.h
nemiver::Dialog
Definition: nmv-dialog.h:50
nemiver::ChooseOverloadsDialog
Definition: nmv-choose-overloads-dialog.h:34
nemiver::common::SafePtr< Priv >
nmv-dialog.h