2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
15 #include <afs/param.h>
19 #include "submount_info.h"
22 CSubmountInfo::CSubmountInfo()
27 CSubmountInfo::CSubmountInfo(const CString
& strShareName
, const CString
& strPathName
, SUBMT_INFO_STATUS status
)
31 SetShareName(strShareName
);
32 SetPathName(strPathName
);
35 CSubmountInfo::CSubmountInfo(const CSubmountInfo
& info
)
37 SetStatus(info
.GetStatus());
38 SetShareName(info
.GetShareName());
39 SetPathName(info
.GetPathName());
42 CSubmountInfo::~CSubmountInfo()