diff options
author | 2009-08-09 17:05:01 +0100 | |
---|---|---|
committer | 2009-08-09 17:05:28 +0100 | |
commit | 22b7d28d091847401fc995df613a181bf7efdef8 (patch) | |
tree | 4d0dcbc6789a81823004a92dbda7aed190198869 | |
parent | 13ad158d7ac2de08bc81a9ca6cedfebbfcea8b0d (diff) | |
download | paludis-22b7d28d091847401fc995df613a181bf7efdef8.tar.gz paludis-22b7d28d091847401fc995df613a181bf7efdef8.tar.xz |
hate python
-rw-r--r-- | python/environment.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/python/environment.cc b/python/environment.cc index fcac4370e..ff44881c5 100644 --- a/python/environment.cc +++ b/python/environment.cc @@ -421,6 +421,15 @@ class EnvironmentImplementationWrapper : throw PythonMethodNotImplemented("EnvironmentImplementation", "want_choice_enabled"); } + virtual const std::string value_for_choice_parameter( + const std::tr1::shared_ptr<const PackageID> &, + const std::tr1::shared_ptr<const Choice> &, + const UnprefixedChoiceName & + ) const + { + throw PythonMethodNotImplemented("EnvironmentImplementation", "value_for_choice_parameter"); + } + virtual std::tr1::shared_ptr<const Set<UnprefixedChoiceName> > known_choice_value_names( const std::tr1::shared_ptr<const PackageID> &, const std::tr1::shared_ptr<const Choice> & |