Drop cv:: prefix from cv::String used inside the cv namespace

This commit is contained in:
Andrey Kamaev
2013-03-22 20:37:49 +04:00
parent 75513a46dc
commit be7bbe3aa9
122 changed files with 1077 additions and 1077 deletions

View File

@@ -68,13 +68,13 @@ namespace cv
}
//lookup the binary given the file name
cl_program progLookup(cv::String srcsign);
cl_program progLookup(String srcsign);
//add program to the cache
void addProgram(cv::String srcsign, cl_program program);
void addProgram(String srcsign, cl_program program);
void releaseProgram();
std::map <cv::String, cl_program> codeCache;
std::map <String, cl_program> codeCache;
unsigned int cacheSize;
//The presumed watermark for the cache volume (256MB). Is it enough?
//We may need more delicate algorithms when necessary later.