/** * Copyright (C) ARM Limited 2013-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 DISKIODRIVER_H#define DISKIODRIVER_H#include "Driver.h"#include "DynBuf.h"classDiskIODriver:publicPolledDriver{private:typedefPolledDriversuper;public:DiskIODriver();~DiskIODriver();voidreadEvents(mxml_node_t*constroot);voidstart();voidread(Buffer*constbuffer);private:voiddoRead();DynBufmBuf;int64_tmReadBytes;int64_tmWriteBytes;// Intentionally unimplementedDiskIODriver(constDiskIODriver&);DiskIODriver&operator=(constDiskIODriver&);};#endif // DISKIODRIVER_H