Forward declaration of MemoryController.
authorKevin Lim <ktlim@umich.edu>
Wed, 8 Mar 2006 16:34:41 +0000 (11:34 -0500)
committerKevin Lim <ktlim@umich.edu>
Wed, 8 Mar 2006 16:34:41 +0000 (11:34 -0500)
My change to exec_context.hh probably affected these files to no longer have MemoryController forward declared through a long chain of includes.  MemoryController should be forward declared where it is used anyways.

dev/alpha_console.hh:
dev/uart.hh:
dev/uart8250.hh:
    Forward declaration of MemoryController.

--HG--
extra : convert_revision : afaac4014e0eb3b6d5d385cd4444b77511e03b51

dev/alpha_console.hh
dev/uart.hh
dev/uart8250.hh

index 86ef021e9f2510f561373ea0dce21a2433741be9..f63c6ad7e55435ce3682ca7eea419c7842cafe11 100644 (file)
@@ -43,6 +43,7 @@ class BaseCPU;
 class SimConsole;
 class AlphaSystem;
 class SimpleDisk;
+class MemoryController;
 
 /**
  * Memory mapped interface to the system console. This device
index 145b9ca9e6ac2c0a08a9186a5780a7150dd211f2..78b1dc68e0d9a440f601233d56732cee41518140 100644 (file)
@@ -37,6 +37,7 @@
 #include "dev/io_device.hh"
 
 class SimConsole;
+class MemoryController;
 class Platform;
 
 const int RX_INT = 0x1;
index 88abf8e242ac62e8bf7f67cace12816837a15703..63d1da3cf501857eed6d500d8ada7c67424e6490 100644 (file)
@@ -53,6 +53,7 @@
 #define IIR_LINE  0x06 /* Rx Line Status (highest priority)*/
 
 class SimConsole;
+class MemoryController;
 class Platform;
 
 class Uart8250 : public Uart