forked from OCSInventory-NG/WindowsAgent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSystemPortList.h
34 lines (27 loc) · 1.29 KB
/
SystemPortList.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//====================================================================================
// Open Computer and Software Inventory Next Generation
// Copyright (C) 2010 OCS Inventory NG Team. All rights reserved.
// Web: http://www.ocsinventory-ng.org
// This code is open source and may be copied and modified as long as the source
// code is always made freely available.
// Please refer to the General Public Licence V2 http://www.gnu.org/ or Licence.txt
//====================================================================================
// SystemPortList.h: interface for the CSystemPortList class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SYSTEMPORTLIST_H__2A8DF271_A4B9_47A1_ACD7_455B1E6C24B5__INCLUDED_)
#define AFX_SYSTEMPORTLIST_H__2A8DF271_A4B9_47A1_ACD7_455B1E6C24B5__INCLUDED_
#pragma once
#include "SysInfoClasses.h"
class SYSINFO_API CSystemPortList : public CList<CSystemPort, CSystemPort&>
{
public: // Methods
//////////////////////////////////
// Standard contructor/destructor
//////////////////////////////////
CSystemPortList();
virtual ~CSystemPortList();
// Get hash code of data, to determine if changed since last inventory
LPCTSTR GetHash();
};
#endif // !defined(AFX_SYSTEMPORTLIST_H__2A8DF271_A4B9_47A1_ACD7_455B1E6C24B5__INCLUDED_)