blob: 13703ac6b556b344695d821d90304fbcdd584de0 (
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
|
/**
* Copyright (C) ARM Limited 2014-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 FSDRIVER_H
#define FSDRIVER_H
#include "Driver.h"
class FSDriver : public PolledDriver {
public:
FSDriver();
~FSDriver();
void readEvents(mxml_node_t *const xml);
int writeCounters(mxml_node_t *root) const;
private:
// Intentionally unimplemented
FSDriver(const FSDriver &);
FSDriver &operator=(const FSDriver &);
};
#endif // FSDRIVER_H
|