diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-07-09 20:59:16 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-07-09 20:59:16 +0100 |
commit | c920fe38a19013b99f3f74e48da9724fb053c212 (patch) | |
tree | 6bb036fd3f61b85daceb26f74378eadcdd977db1 /src/T2PoolView.cpp | |
parent | 96a63139221587c6be9659c1e07eacd3a8e7f048 (diff) | |
download | t2win-c920fe38a19013b99f3f74e48da9724fb053c212.tar.gz t2win-c920fe38a19013b99f3f74e48da9724fb053c212.zip |
support building from VC++ IDE, add resources
Diffstat (limited to '')
-rw-r--r-- | src/T2PoolView.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/T2PoolView.cpp b/src/T2PoolView.cpp index f02934a..0ff5429 100644 --- a/src/T2PoolView.cpp +++ b/src/T2PoolView.cpp @@ -1,8 +1,9 @@ -#include "T2PeopleDemandList.h" -#include "T2PeopleTimeZoneList.h" -#include "T2PeopleType.h" -#include "T2PeopleTypeArray.h" -#include "T2Pool.h" +#include "StdAfx.h" +#include "T2DLL/T2PeopleDemandList.h" +#include "T2DLL/T2PeopleTimeZoneList.h" +#include "T2DLL/T2PeopleType.h" +#include "T2DLL/T2PeopleTypeArray.h" +#include "T2DLL/T2Pool.h" #include "T2PoolView.h" #ifdef _DEBUG @@ -22,9 +23,11 @@ T2PoolView::~T2PoolView() { } BEGIN_MESSAGE_MAP(T2PoolView, CFrameWnd) + //{{AFX_MSG_MAP(T2PoolView) ON_WM_ERASEBKGND() ON_WM_VSCROLL() ON_WM_LBUTTONDOWN() + //}}AFX_MSG_MAP END_MESSAGE_MAP() void T2PoolView::SetPool(T2Pool *inPool) { |