blob: fd6e45677ca3e19e4d635115567bd417139dd6d0 (
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
|
/**
* Copyright (C) ARM Limited 2015-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 TTRACEDRIVER_H
#define TTRACEDRIVER_H
#include "mxml/mxml.h"
#include "Driver.h"
class TtraceDriver : public SimpleDriver {
public:
TtraceDriver();
~TtraceDriver();
void readEvents(mxml_node_t *const xml);
void start();
void stop();
bool isSupported() const { return mSupported; }
private:
void setTtrace(const int flags);
bool mSupported;
// Intentionally unimplemented
TtraceDriver(const TtraceDriver &);
TtraceDriver &operator=(const TtraceDriver &);
};
#endif // TTRACEDRIVER_H
|