diff -r da7f80e04a54 -r 52a17be9c4d1 NativeLib.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/NativeLib.py Tue Feb 26 16:37:17 2013 +0900 @@ -0,0 +1,7 @@ +import os +from POULibrary import POULibrary + +class NativeLibrary(POULibrary): + def GetLibraryPath(self): + return os.path.join(os.path.split(__file__)[0], "NativeLib.xml") +