00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 #pragma once 00006 #include "vmsbtdownloadpeerinfolist.h" 00007 #include "vmsBtDownloadPeerInfoImpl.h" 00008 00009 class vmsBtDownloadPeerInfoListImpl : 00010 public vmsBtDownloadPeerInfoList 00011 { 00012 public: 00013 bool UpdateList (); 00014 int get_PeerCount (); 00015 vmsBtDownloadPeerInfo* get_Peer (int nIndex); 00016 00017 class vmsBtDownloadImpl* m_dld; 00018 00019 vmsBtDownloadPeerInfoListImpl(void); 00020 public: 00021 virtual ~vmsBtDownloadPeerInfoListImpl(void); 00022 00023 protected: 00024 std::vector <vmsBtDownloadPeerInfoImpl> m_vPeers; 00025 };
1.5.6