comparison engine/core/model/metamodel/object.h @ 326:671e22a1cc8d

Replaced dataset with Model in documentation for Object. Closes #343
author cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
date Fri, 21 Aug 2009 23:36:50 +0000
parents 6177cdf72489
children 7e5717105212
comparison
equal deleted inserted replaced
325:54de5aebf732 326:671e22a1cc8d
53 /** Constructor 53 /** Constructor
54 * An object may optionally inherit default attributes 54 * An object may optionally inherit default attributes
55 * from another object. This object may override these 55 * from another object. This object may override these
56 * defaults, but it may not CHANGE the inherited values. 56 * defaults, but it may not CHANGE the inherited values.
57 * 57 *
58 * Objects are created by calling addObject from dataset, thus 58 * Objects are created by calling Model::createObject, thus
59 * this method should really be called only by dataset or test code 59 * this method should really be called only by Model or test code
60 * @see Dataset in model/metamodel/dataset.h for creation 60 * @see Model in model/model.h for creation of objects.
61 * of objects.
62 */ 61 */
63 Object(const std::string& identifier, const std::string& name_space, Object* inherited=NULL); 62 Object(const std::string& identifier, const std::string& name_space, Object* inherited=NULL);
64 63
65 /** Destructor 64 /** Destructor
66 */ 65 */