pro IDLitManipulatorContainer__Define
   ;; pragmas
   compile_opt idl2, hidden

   ;; Just define this bad boy.
   void = {IDLitManipulatorContainer, $
             inherits _IDLitManipulator, $ ;; I am a manipulator
             inherits IDLitContainer, $  ;; I hold things
             m_bAutoSwitch : 0b,  $ ;; Are we in a automode?
             m_currManip: obj_new()  $ ;; Current Manipulator
      }

end