Exemplo n.º 1
0
 public FullPath(RootPath InRootPath, ScopePath InScopePath)
 {
     mFullPath =
         Path.Combine(InRootPath.ToString(), InScopePath.ToString());
 }
Exemplo n.º 2
0
        public DirPath(RootPath InRootPath, ScopePath InScopePath)
        {
            string dirPath = Path.Combine(InRootPath.ToString(), InScopePath.ToString());

            mDirPath = dirPath;
        }
Exemplo n.º 3
0
        public RootPath GetRootPath(ScopePath InScopePath)
        {
            string rootPath = Pather.GetRootPath(mFullPath, InScopePath.ToString());

            return(new RootPath(rootPath));
        }
Exemplo n.º 4
0
 public ScopePath(ScopePath InDirPath, FileName InFileName)
 {
     mScopePath = Path.Combine(InDirPath.ToString(), InFileName.ToString( ));
 }