~ubuntu-branches/ubuntu/lucid/aptitude/lucid-proposed

« back to all changes in this revision

Viewing changes to src/menu_tree.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2008-05-27 10:28:10 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080527102810-pxc090mnjkr4xlek
Tags: 0.4.11.2-1ubuntu1
* Merge from debian unstable, remaining changes:
  - 03_branding.dpatch: ubuntu branding
  - 04_changelog.dpatch: take changelogs from changelogs.ubuntu.com
  - 07_hide_recommends_warning.dpatch: do not show a warning about
    missing recommends
  - 08_ubuntu_default_source.dpatch: do not clean lists directory
    on transient network failures
  - 11_gxx43.dpatch:build tests without -Werror
* Updated:
  - 03_branding.dpatch
* Disabled 07_hide_recommends warning because we do install 
  recommends now by default too

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// menu_tree.h                                      -*-c++-*-
2
2
//
3
 
//   Copyright (C) 2005, 2007 Daniel Burrows
 
3
//   Copyright (C) 2005, 2007-2008 Daniel Burrows
4
4
//
5
5
//   This program is free software; you can redistribute it and/or
6
6
//   modify it under the terms of the GNU General Public License as
28
28
 
29
29
#include <cwidget/widgets/tree.h>
30
30
 
31
 
class pkg_matcher;
 
31
namespace aptitude
 
32
{
 
33
  namespace matching
 
34
  {
 
35
    class pkg_matcher;
 
36
  }
 
37
}
 
38
 
32
39
class pkg_tree_node;
33
40
class solution_item;
34
41
class undo_group;
60
67
  solution_item *solution_selection();
61
68
 
62
69
  /** A precompiled matcher representing the last search that was performed. */
63
 
  pkg_matcher *last_search_matcher;
 
70
  aptitude::matching::pkg_matcher *last_search_matcher;
64
71
 
65
72
  /** The string that was compiled to produce the above matcher. */
66
73
  std::wstring last_search_term;