/** * 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 NETDRIVER_H#define NETDRIVER_H#include "Driver.h"#include "DynBuf.h"classNetDriver:publicPolledDriver{private:typedefPolledDriversuper;public:NetDriver();~NetDriver();voidreadEvents(mxml_node_t*constroot);voidstart();voidread(Buffer*constbuffer);private:booldoRead();DynBufmBuf;int64_tmReceiveBytes;int64_tmTransmitBytes;// Intentionally unimplementedNetDriver(constNetDriver&);NetDriver&operator=(constNetDriver&);};#endif // NETDRIVER_H