mirror of
https://github.com/opencv/opencv.git
synced 2024-12-11 22:59:16 +08:00
20 lines
322 B
C++
20 lines
322 B
C++
#include "NativePackageManager.h"
|
|
|
|
using namespace std;
|
|
|
|
bool NativePackageManager::InstallPackage(const PackageInfo& package)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
vector<PackageInfo> NativePackageManager::GetInstalledPackages()
|
|
{
|
|
vector<PackageInfo> result;
|
|
|
|
return result;
|
|
}
|
|
|
|
NativePackageManager::~NativePackageManager()
|
|
{
|
|
}
|