AbstractCacheEntry.hh (6145:15cca6ab723a) AbstractCacheEntry.hh (6154:6bb54dcb940e)
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 23 unchanged lines hidden (view full) ---

32 *
33 * Description: Common base class for a machine node.
34 *
35 */
36
37#ifndef AbstractCacheEntry_H
38#define AbstractCacheEntry_H
39
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 23 unchanged lines hidden (view full) ---

32 *
33 * Description: Common base class for a machine node.
34 *
35 */
36
37#ifndef AbstractCacheEntry_H
38#define AbstractCacheEntry_H
39
40#include "Global.hh"
41#include "Address.hh"
42#include "AccessPermission.hh"
40#include "mem/ruby/common/Global.hh"
41#include "mem/ruby/common/Address.hh"
42#include "mem/protocol/AccessPermission.hh"
43
44class AbstractCacheEntry {
45public:
46 // Constructors
47 AbstractCacheEntry();
48
49 // Destructor, prevent it from instantiation
50 virtual ~AbstractCacheEntry() = 0;

--- 31 unchanged lines hidden ---
43
44class AbstractCacheEntry {
45public:
46 // Constructors
47 AbstractCacheEntry();
48
49 // Destructor, prevent it from instantiation
50 virtual ~AbstractCacheEntry() = 0;

--- 31 unchanged lines hidden ---