~ubuntu-branches/ubuntu/trusty/schroot/trusty

« back to all changes in this revision

Viewing changes to bin/dchroot/dchroot-chroot-config.h

  • Committer: Bazaar Package Importer
  • Author(s): Roger Leigh
  • Date: 2010-10-03 11:57:08 UTC
  • mfrom: (1.1.25 upstream) (2.2.16 sid)
  • Revision ID: james.westby@ubuntu.com-20101003115708-jy1htehs3nsj8u68
* New upstream stable release.
* Updated translations:
  - vi (Closes: #598353).  Thanks to Clytie Siddall.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    /**
41
41
     * The constructor.
42
42
     *
 
43
     * @param chroot_namespace the namespace to use for initialised
 
44
     * configuration.
43
45
     * @param file initialise using a configuration file or a whole
44
46
     * directory containing configuration files.
45
 
     * @param active true if the chroots in the configuration file are
46
 
     * active sessions, otherwise false.
47
47
     */
48
 
    chroot_config (std::string const& file,
49
 
                   bool               active);
 
48
    chroot_config (std::string const& chroot_namespace,
 
49
                   std::string const& file);
50
50
 
51
51
    /// The destructor.
52
52
    virtual ~chroot_config ();
53
53
 
54
54
  private:
55
55
    virtual void
56
 
    parse_data (std::istream& stream,
57
 
                bool          active);
 
56
    parse_data (std::string const& chroot_namespace,
 
57
                std::istream&      stream);
58
58
  };
59
59
 
60
60
}