Esempio n. 1
0
        public ScopePath GetScopePath(RootPath InHomePath)
        {
            string scopePath =
                Pather.GetFilePath(mFullPath, InHomePath.ToString());

            return(new ScopePath(scopePath));
        }
Esempio n. 2
0
 public FullPath(RootPath InRootPath, ScopePath InScopePath)
 {
     mFullPath =
         Path.Combine(InRootPath.ToString(), InScopePath.ToString());
 }
Esempio n. 3
0
 /// <summary>
 /// combine two root paths into a single root.
 /// </summary>
 /// <param name="InRootPath1"></param>
 /// <param name="InRootPath2"></param>
 public RootPath(RootPath InRootPath1, RootPath InRootPath2)
 {
     mRootPath = Path.Combine(InRootPath1.ToString(), InRootPath2.ToString());
 }
Esempio n. 4
0
        public DirPath(RootPath InRootPath, ScopePath InScopePath)
        {
            string dirPath = Path.Combine(InRootPath.ToString(), InScopePath.ToString());

            mDirPath = dirPath;
        }
Esempio n. 5
0
 public RootPath(RootPath InRootPath)
 {
     mRootPath = InRootPath.ToString();
 }