Clone
ixen <ixen@copyhandler.com>
committed
on 18 Jul 11
Moved thread controller to chcore library.
LoggerImprovements + 5 more
src/ch/ClipboardMonitor.cpp (+1 -1)
3 3 //   ixen@copyhandler.com
4 4 //
5 5 //   This program is free software; you can redistribute it and/or modify
6 6 //   it under the terms of the GNU Library General Public License
7 7 //   (version 2) as published by the Free Software Foundation;
8 8 //
9 9 //   This program is distributed in the hope that it will be useful,
10 10 //   but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 12 //   GNU General Public License for more details.
13 13 //
14 14 //   You should have received a copy of the GNU Library General Public
15 15 //   License along with this program; if not, write to the
16 16 //   Free Software Foundation, Inc.,
17 17 //   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18 18 //
19 19 /// @file ClipboardMonitor.cpp
20 20 /// @brief Contains the implementation of clipboard monitor package.
21 21 //******************************************************************************
22 22 #include "stdafx.h"
23   #include "TWorkerThreadController.h"
  23 #include "../libchcore/TWorkerThreadController.h"
24 24 #include "ClipboardMonitor.h"
25 25 #include "ch.h"
26 26 #include "task.h"
27 27 #include "CfgProperties.h"
28 28 #include "FolderDialog.h"
29 29 #include "task.h"
30 30 #include "ShutdownDlg.h"
31 31
32 32 CClipboardMonitor CClipboardMonitor::S_ClipboardMonitor;
33 33
34 34 CClipboardMonitor::CClipboardMonitor()
35 35 {
36 36 }
37 37
38 38 CClipboardMonitor::~CClipboardMonitor()
39 39 {
40 40         Stop();
41 41 }
42 42
43 43 void CClipboardMonitor::StartMonitor(CTaskArray* pTasks)