/** * Copyright (C) ARM Limited 2014. 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 FTRACEDRIVER_H#define FTRACEDRIVER_H#include "Driver.h"classFtraceDriver:publicSimpleDriver{public:FtraceDriver();~FtraceDriver();voidreadEvents(mxml_node_t*constxml);intread(constchar*line,int64_t**buf);private:int64_t*mValues;// Intentionally unimplementedFtraceDriver(constFtraceDriver&);FtraceDriver&operator=(constFtraceDriver&);};#endif // FTRACEDRIVER_H