########################################################################
#
# This file contains actions for objects of the CORBA::Object type.
#
########################################################################

########################################################################
# cat an object
########################################################################

proc cat(anObject)
{
  println(anObject)
}

declareAction("cat", cat, "shows information about an object")

########################################################################
