findlanabyname-20040228
[openafs.git] / src / WINNT / client_exp / submount_info.cpp
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
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
8  */
9
10 extern "C" {
11 #include <afs/param.h>
12 #include <afs/stds.h>
13 }
14
15 #include "stdafx.h"
16 #include "submount_info.h"
17
18
19 CSubmountInfo::CSubmountInfo()
20 {
21         m_Status = SIS_NULL;
22 }
23
24 CSubmountInfo::CSubmountInfo(const CString& strShareName, const CString& strPathName, SUBMT_INFO_STATUS status)
25 {
26         m_Status = status;
27         
28         SetShareName(strShareName);
29         SetPathName(strPathName);
30 }
31
32 CSubmountInfo::CSubmountInfo(const CSubmountInfo& info)
33 {
34         SetStatus(info.GetStatus());
35         SetShareName(info.GetShareName());
36         SetPathName(info.GetPathName());
37 }       
38
39 CSubmountInfo::~CSubmountInfo()
40 {
41 }
42