//*-- Author : Valeriy Onuchin 11/09/2000 
//
//
////////////////////////////////////////////////////////////////////////////////
//
// rooCollectionObject corresponds to Collection_Object Class
//
// The class rooCollectionObject is the abstract base class for classes that 
// serve as self-describing data types for collections.
//
// Currently Objectivity/DB supports only one kind of collection attribute, 
// namely VArray attributes, which contain variable-size arrays of elements
// of the same type. The subclass VArray_Object represents this kind of 
// persistent data.
//
// Because this class is abstract, you never instantiate it; instead, you work
// with instances of its concrete derived classes. You should not derive your
// own classes from this class.

#include "rooObjy.h"
#include <ooas.h>
#include <oo.h>

ClassImp(rooCollectionObject)

////////////////////////////////////////////////////////////////////////////////
//______________________________________________________________________________
 rooCollectionObject::rooCollectionObject()
{
   // default constructor, for internal use only

   fImp = new Collection_Object();
}


ROOT page - Class index - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.