// // P4Dir.swift // DocHub // // Created by Tristan Juricek on 6/12/14. // Copyright (c) 2014 Perforce. All rights reserved. // import Foundation struct P4Dir : HasDepotPath { var depotPath: String var name: String { return depotPath.lastPathComponent } }