~ubuntu-branches/ubuntu/trusty/newsbeuter/trusty-proposed

« back to all changes in this revision

Viewing changes to include/configparser.h

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2008-05-01 14:51:20 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080501145120-i65avsclnrpl2cfq
Tags: 0.9-1
* New upstream release.
  - Fix problem displaying titles when using zh_CN.UTF-8
    locale (Closes: #471434).
* Add default configuration to set sensible-browser as browser and
  add dirs file to create /etc/newsbeuter (Closes: #470833).
* remove libnxml-depends and libmrss-depends calls in rules and
  related dependency lines in control since they are not needed
  anymore (Closes: #467201).

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
                        std::set<std::string> included_files;
30
30
        };
31
31
 
 
32
        class null_config_action_handler : public config_action_handler {
 
33
                public:
 
34
                        null_config_action_handler() { }
 
35
                        virtual ~null_config_action_handler() { }
 
36
                        virtual action_handler_status handle_action(const std::string& , const std::vector<std::string>& ) { 
 
37
                                return AHS_OK;
 
38
                        }
 
39
        };
 
40
 
32
41
}
33
42
 
34
43
#endif