mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
429 B
17 lines
429 B
#ifndef __PACKAGE_MANAGER_STUB_H__ |
|
#define __PACKAGE_MANAGER_STUB_H__ |
|
|
|
#include "IPackageManager.h" |
|
#include "CommonPackageManager.h" |
|
|
|
class PackageManagerStub: public CommonPackageManager |
|
{ |
|
public: |
|
std::vector<PackageInfo> InstalledPackages; |
|
virtual ~PackageManagerStub(); |
|
protected: |
|
virtual bool InstallPackage(const PackageInfo& package); |
|
virtual std::vector<PackageInfo> GetInstalledPackages(); |
|
}; |
|
|
|
#endif |