diff options
Diffstat (limited to 'src/dev/net/etherobject.hh')
-rw-r--r-- | src/dev/net/etherobject.hh | 25 |
1 files changed, 6 insertions, 19 deletions
diff --git a/src/dev/net/etherobject.hh b/src/dev/net/etherobject.hh index 55cfa97e6..638c50667 100644 --- a/src/dev/net/etherobject.hh +++ b/src/dev/net/etherobject.hh @@ -1,5 +1,6 @@ /* * Copyright (c) 2007 The Regents of The University of Michigan + * Copyright 2019 Google, Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -26,6 +27,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * Authors: Ali Saidi + * Gabe Black */ /** @@ -36,32 +38,17 @@ #ifndef __DEV_NET_ETHEROBJECT_HH__ #define __DEV_NET_ETHEROBJECT_HH__ -#include "params/EtherObject.hh" -#include "sim/sim_object.hh" +#include <string> class EtherInt; /** - * The base EtherObject class, allows for an accesor function to a - * simobj that returns the Port. + * The base EtherObject interface. */ -class EtherObject : public SimObject +class EtherObject { public: - typedef EtherObjectParams Params; - EtherObject(const Params *params) - : SimObject(params) {} - - const Params * - params() const - { - return dynamic_cast<const Params *>(_params); - } - - public: - /** Additional function to return the Port of a memory object. */ - virtual EtherInt *getEthPort(const std::string &if_name, int idx = -1) = 0; - + virtual EtherInt *getEthPort(const std::string &if_name, int idx=-1) = 0; }; #endif // __DEV_NET_ETHEROBJECT_HH__ |