Add Dirk Luetjen's ssphys libraries and command-line tool
[vss2svn.git] / ssphys / SSPhys / GetCommand.h
blob97796862a70bd55f392352cde09f4db42078471d
1 // GetCommand.h: interface for the GetCommand class.
2 //
3 //////////////////////////////////////////////////////////////////////
5 #if !defined(AFX_GETCOMMAND_H__26EB05F6_F335_4169_8754_A7BEEF5FB29E__INCLUDED_)
6 #define AFX_GETCOMMAND_H__26EB05F6_F335_4169_8754_A7BEEF5FB29E__INCLUDED_
8 #if _MSC_VER > 1000
9 #pragma once
10 #endif // _MSC_VER > 1000
12 #include "Command.h"
14 //---------------------------------------------------------------------------
15 class CGetCommand : public CCommand
17 public:
18 CGetCommand ();
20 virtual COptionInfoList GetOptionsInfo () const;
21 virtual bool SetOption (const COption& option);
22 virtual bool SetArguments (CArguments& args);
23 void Execute ();
25 protected:
26 std::string m_PhysFile;
27 std::string m_DestFile;
28 bool m_bForceOverwrite;
29 bool m_bBulkGet;
30 int m_Version;
33 #endif // !defined(AFX_GETCOMMAND_H__26EB05F6_F335_4169_8754_A7BEEF5FB29E__INCLUDED_)