Cosmos/source/Cosmos.Kernel.LogViewer/Overview/OverviewItemCollection.cs
2007-11-14 14:16:34 +00:00

14 lines
No EOL
625 B
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
namespace Cosmos.Kernel.LogViewer.Overview {
public class OverviewItemCollection: ObservableCollection<OverviewItem> {
public OverviewItemCollection() {
Add(new OverviewItem(new MessagesDisplay(), "General Message", "Shows all errors, warnings and informational messages written out by the kernel"));
Add(new OverviewItem(new Multiboot_MMapDisplay(), "MultiBoot MMap info", "Shows the memorymap information, available from the MultiBoot Specification boot loader"));
}
}
}