a7dc8b4df9dde673f92af1d2829f045e2cc9402e
[profile/mobile/platform/kernel/linux-3.10-sc7730.git] / tools / gator / daemon / FSDriver.h
1 /**
2  * Copyright (C) ARM Limited 2014. All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  */
8
9 #ifndef FSDRIVER_H
10 #define FSDRIVER_H
11
12 #include "Driver.h"
13
14 class FSDriver : public PolledDriver {
15 public:
16         FSDriver();
17         ~FSDriver();
18
19         void readEvents(mxml_node_t *const xml);
20
21         int writeCounters(mxml_node_t *root) const;
22
23 private:
24         // Intentionally unimplemented
25         FSDriver(const FSDriver &);
26         FSDriver &operator=(const FSDriver &);
27 };
28
29 #endif // FSDRIVER_H