Fixed issue #1220: ext/CrashServer/CommonLibs/Zlib/Zlib.vcproj immediate dir Win32...
[TortoiseGit.git] / src / TortoiseShell / ShellExtClassFactory.h
blob46b606766db99c9410f58bd6af31660f2cc91b8e
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2006 - Stefan Kueng
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #pragma once
22 /**
23 * \ingroup TortoiseShell
24 * This class factory object creates the main handlers -
25 * its constructor says which OLE class it has to make.
27 class CShellExtClassFactory : public IClassFactory
29 protected:
30 ULONG m_cRef;
31 /// variable to contain class of object (i.e. not under source control, up to date)
32 FileState m_StateToMake;
34 public:
35 CShellExtClassFactory(FileState state);
36 virtual ~CShellExtClassFactory();
38 //@{
39 /// IUnknown members
40 STDMETHODIMP QueryInterface(REFIID, LPVOID FAR *);
41 STDMETHODIMP_(ULONG) AddRef();
42 STDMETHODIMP_(ULONG) Release();
43 //@}
45 //@{
46 /// IClassFactory members
47 STDMETHODIMP CreateInstance(LPUNKNOWN, REFIID, LPVOID FAR *);
48 STDMETHODIMP LockServer(BOOL);
49 //@}