Definition at line 53 of file DirImViewer3D.h. References Clear(), Impala::Core::Stream::RgbDataSrcFactory::Construct(), Impala::FileNameExt(), InitViews(), Impala::Core::Stream::RgbDataSrcFactory::Instance(), mDirName, mFileNames, and mRgbDataSrc. 00054 { 00055 Clear(); 00056 mDirName = dirName; 00057 String fExt = FileNameExt(dirName); 00058 00059 if ((fExt == "raw") || (fExt == "mpg") || (fExt == "mpeg")) 00060 { 00061 #ifdef REPOSITORY_USED 00062 OpenSrc(Persistency::RgbDataSrcLocator("file:", "abs", dirName)); 00063 #else 00064 RgbDataSrcFactory& f = RgbDataSrcFactory::Instance(); 00065 mRgbDataSrc = f.Construct(dirName, fExt); 00066 #endif //REPOSITORY_USED 00067 } 00068 else 00069 Util::DirImageFileNames(dirName, mFileNames); 00070 InitViews(); 00071 }
Here is the call graph for this function: ![]()
|