mirror of
https://github.com/opencv/opencv.git
synced 2024-12-14 08:59:11 +08:00
19 lines
325 B
C++
19 lines
325 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()
|
|
{
|
|
} |