Deleted Added
sdiff udiff text old ( 10268:9dac4c781ad6 ) new ( 11420:b48c0ba4f524 )
full compact
1/*
2 * Copyright (c) 2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

40/**
41 * @file
42 * SubSystem declarations.
43 */
44
45#ifndef __SIM_SUB_SYSTEM_HH__
46#define __SIM_SUB_SYSTEM_HH__
47
48#include "sim/sim_object.hh"
49
50/**
51 * The SubSystem simobject does nothing, it is just a container for
52 * other simobjects used by the configuration system
53 */
54class SubSystem : public SimObject
55{
56 public:
57 SubSystem(const Params *p) :
58 SimObject(p)
59 {}
60};
61
62#endif