blob: ebd9a4cb5aec800845be3dd2f3c054ac65870f5b (
plain)
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
34
35
36
37
38
39
40
41
|
/**
* Copyright (C) ARM Limited 2010-2016. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef EXTERNALDRIVER_H
#define EXTERNALDRIVER_H
#include "Driver.h"
class ExternalDriver : public SimpleDriver {
public:
ExternalDriver();
bool claimCounter(const Counter &counter) const;
void resetCounters();
void setupCounter(Counter &counter);
void start();
void disconnect();
private:
typedef SimpleDriver super;
bool connect() const;
void query() const;
mutable int mUds;
mutable bool mQueried;
bool mStarted;
// Intentionally unimplemented
ExternalDriver(const ExternalDriver &);
ExternalDriver &operator=(const ExternalDriver &);
};
#endif // EXTERNALDRIVER_H
|