Удалил неиспользуемые файлы

This commit is contained in:
rzaitov
2013-11-01 18:09:31 +04:00
parent 0758b2e436
commit e18bebeae5
20 changed files with 21 additions and 318 deletions
-1
View File
@@ -1 +0,0 @@
__author__ = 'rzaitov'
@@ -1,6 +0,0 @@
class ConverterBase:
def Convert(self, rel_path):
return None
@@ -1,11 +0,0 @@
import os
import utils.PathConverter.converter_base as cB
class PathConverter(cB.ConverterBase):
def __init__(self, sln_path):
self._sln_dir = os.path.dirname(sln_path)
def Convert(self, rel_path):
return os.path.join(self._sln_dir, rel_path)