-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExtraTester.h
More file actions
30 lines (22 loc) · 993 Bytes
/
ExtraTester.h
File metadata and controls
30 lines (22 loc) · 993 Bytes
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
//************************************************************************
// The Logitech LCD SDK, including all acompanying documentation,
// is protected by intellectual property laws. All use of the Logitech
// LCD SDK is subject to the License Agreement found in the
// "Logitech LCD SDK License Agreement" file and in the Reference Manual.
// All rights not expressly granted by Logitech are reserved.
//************************************************************************
#ifndef EXTRA_TESTER_H_INCLUDED_
#define EXTRA_TESTER_H_INCLUDED_
#include "EZ_LCD.h"
#include <vector>
class ExtraTester
{
public:
static VOID DoButtonTestingMono(CEzLcd &lcd);
static VOID DoButtonTestingColor(CEzLcd &lcd);
static VOID DoScreenPriorityTesting(CEzLcd &lcd);
static VOID DoForegroundTesting(CEzLcd &lcd);
static VOID DoVisibleTesting(CEzLcd &lcd, std::vector<HANDLE> handles);
static VOID DoPageTesting(CEzLcd &lcd);
};
#endif // EXTRA_TESTER_H_INCLUDED_