mirror of
https://github.com/opencv/opencv.git
synced 2024-12-14 17:29:17 +08:00
5ffbcf1e16
Internal OpenCV library in OpenCV Manager support added; Unit tests improved, platform specific tests added, MIPS related tests added; Code refactoring done.
19 lines
321 B
C++
19 lines
321 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()
|
|
{
|
|
} |