blob: 6b7305b46a30ccdb6b1e2f3118d3e6e5333d11dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Ignore static versions shadowed by member functions
%ignore zypp::filesystem::Pathname::dirname(Pathname const &);
%ignore zypp::filesystem::Pathname::basename(Pathname const &);
%ignore zypp::filesystem::Pathname::extension(Pathname const &);
%ignore zypp::filesystem::Pathname::absolutename(Pathname const &);
%ignore zypp::filesystem::Pathname::relativename(Pathname const &);
%ignore zypp::filesystem::Pathname::cat(Pathname const &,Pathname const &);
%ignore zypp::filesystem::Pathname::extend(Pathname const &,std::string const &);
%ignore zypp::filesystem::operator<( const Pathname & l, const Pathname & r );
%include <zypp/Pathname.h>
|