// // Copyright 1997 Nicholas J. Irias. All rights reserved. // // // P4Info.cpp #include "stdafx.h" #include "P4Info.h" #include "StringUtil.h" #include "resource.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif // Class CP4info - a simple class to parse and hold info returned by 'P4 info' CP4Info::CP4Info() { } void CP4Info::SetPort(LPCTSTR port) { m_ServerAddress=port; } void CP4Info::SetClient(LPCTSTR client) { m_ClientName=client; } void CP4Info::SetUser(LPCTSTR user) { m_UserName=user; }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 16169 | perforce_software | Move files to follow new path scheme for branches. | ||
//guest/perforce_software/p4win/gui/P4Info.cpp | |||||
#1 | 8562 | Matt Attaway |
These feet never stop running. Initial commit of the P4Win source code. To the best of our knowledge this compiles and runs using the 2013.3 P4 API and VS 2010. Expect a few changes as we refine the build process. Please post any build issues to the forums. |