/** * * This has to start as sort of an "interface", while I think about things. * * This has to handle: * * - allocating a new TFrame * - deallocationg a TFrame * (including possibly nuking all old references by other TFrames!!) * - relative positioning of TFrames to others * * I THINK that's about it. * * */ class TFrame { TFrame getNewTFrame(); deleteTFrame(TFrameID); moveAfter(moveobj, afterobj); moveBefore(moveobj, beforeobj); }