~ubuntu-branches/debian/experimental/apt/experimental

« back to all changes in this revision

Viewing changes to apt-pkg/pkgrecords.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2010-02-18 22:07:23 UTC
  • mfrom: (9.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100218220723-zb7zdh6fmsmp30tr
Tags: 0.7.26~exp2
fix crash when LANGUAGE is not set

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
 
21
21
#include <apt-pkg/pkgcache.h>
22
 
#include <apt-pkg/contrib/fileutl.h>
 
22
#include <apt-pkg/fileutl.h>
23
23
#include <vector>
24
24
 
25
 
class pkgRecords
 
25
class pkgRecords                                                        /*{{{*/
26
26
{
27
27
   public:
28
28
   class Parser;
42
42
   pkgRecords(pkgCache &Cache);
43
43
   ~pkgRecords();
44
44
};
45
 
 
46
 
class pkgRecords::Parser
 
45
                                                                        /*}}}*/
 
46
class pkgRecords::Parser                                                /*{{{*/
47
47
{
48
48
   protected:
49
49
   
73
73
   
74
74
   virtual ~Parser() {};
75
75
};
76
 
 
 
76
                                                                        /*}}}*/
77
77
#endif