CMetaApplicationGroup Constructors
To create a CMetaApplicationGroup object initially, use the default constructor. Follow the constructor with a call to the CreateApplicationGroup function.
Note: Names of application groups must be unique within the repository database.
To read an existing group object from the repository database, instantiate the object using the appropriate constructor, then use the ReadObject function.
CMetaApplicationGroup();
This is the default constructor.
CMetaApplicationGroup(const OBJECTID_t lOID);
This constructor instantiates a CMetaApplicationGroup identified by the ObjectID. Follow the constructor with a call to the ReadObject function.
CMetaApplicationGroup(LPCTSTR name);
This constructor instantiates a CMetaApplicationGroup identified by a name. Follow the constructor with a call to the ReadObject function.