diff options
author | Zdenek Prikryl <zprikryl@redhat.com> | 2009-02-12 11:49:49 +0100 |
---|---|---|
committer | Zdenek Prikryl <zprikryl@redhat.com> | 2009-02-12 11:49:49 +0100 |
commit | 2b0714fa5b6fa975bd54626b9f2801407dc35962 (patch) | |
tree | f8e3e5ea0e93dff7e31c3e507397708ac3504d04 /lib/Utils/Packages.h | |
parent | 43e425b5370b816f2110bf83f5fa09af9efedfe1 (diff) | |
download | abrt-2b0714fa5b6fa975bd54626b9f2801407dc35962.tar.gz abrt-2b0714fa5b6fa975bd54626b9f2801407dc35962.tar.xz abrt-2b0714fa5b6fa975bd54626b9f2801407dc35962.zip |
for finding package names we use rpm instead of packagekit
Diffstat (limited to 'lib/Utils/Packages.h')
-rw-r--r-- | lib/Utils/Packages.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/Utils/Packages.h b/lib/Utils/Packages.h index 2228acc..9874dd7 100644 --- a/lib/Utils/Packages.h +++ b/lib/Utils/Packages.h @@ -36,13 +36,10 @@ class CPackages public: CPackages(); ~CPackages(); - bool SearchFile(const std::string& pPath); - bool Install(const std::string& pPackage); - bool GetStatus(); - - std::string GetSearchFileReply(); - bool GetInstallReply(); + std::string SearchFile(const std::string& pPath); + bool Install(const std::string& pPackage); + bool GetInstallationStatus(); }; #endif /* PACKAGES_H_ */ |