root/trunk/library_class.cpp

Revision 5, 327 bytes (checked in by qbert, 6 years ago)

Initial ( and last :( ) commit

Line 
1 #include "StdAfx.h"
2 #include "library_class.h"
3
4
5 void LibraryClass::SetSession(const string& dmdPath)
6 {
7
8     this->libs.clear();
9     string libPath = dmdPath + "\\..\\..\\dm\\lib";
10     string secondLibPath = dmdPath + "\\..\\lib";   
11     GetFilesFromDir(libPath,libs,"lib");
12     GetFilesFromDir(secondLibPath,libs,"lib");
13
14
15    
16 }
Note: See TracBrowser for help on using the browser.