//(c):Benja Fallenstein package gzz.util.headers; import java.io.*; import java.util.*; /** A header with some fields that make it unique. * This is the standard header type for new Storm blocks. * Basically, this is a canonicalized header with * Date, Injected-By and * Random-Bytes headers added. */ public class UniqueHeader822 extends SortedHeader822 { public UniqueHeader822() { super(); addUniqueFields(); } public UniqueHeader822(Header822 initializeWith) { super(initializeWith); addUniqueFields(); } /** Add the header fields that make this header unique. */ protected void addUniqueFields() { // XXX } }