1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667
|
#pragma once
#include <grtpp.h>
#ifdef _WIN32
#pragma warning(disable: 4355) // 'this' : used in base member initializer list
#ifdef GRT_STRUCTS_WORKBENCH_LOGICAL_EXPORT
#define GRT_STRUCTS_WORKBENCH_LOGICAL_PUBLIC __declspec(dllexport)
#else
#define GRT_STRUCTS_WORKBENCH_LOGICAL_PUBLIC __declspec(dllimport)
#endif
#else
#define GRT_STRUCTS_WORKBENCH_LOGICAL_PUBLIC
#endif
#include <grts/structs.h>
#include <grts/structs.model.h>
#include <grts/structs.eer.h>
class workbench_logical_Connection;
typedef grt::Ref<workbench_logical_Connection> workbench_logical_ConnectionRef;
class workbench_logical_Relationship;
typedef grt::Ref<workbench_logical_Relationship> workbench_logical_RelationshipRef;
class workbench_logical_Entity;
typedef grt::Ref<workbench_logical_Entity> workbench_logical_EntityRef;
class workbench_logical_Diagram;
typedef grt::Ref<workbench_logical_Diagram> workbench_logical_DiagramRef;
class workbench_logical_Model;
typedef grt::Ref<workbench_logical_Model> workbench_logical_ModelRef;
namespace mforms {
class Object;
};
namespace grt {
class AutoPyObject;
};
/** a model connection */
class workbench_logical_Connection : public model_Connection
{
typedef model_Connection super;
public:
workbench_logical_Connection(grt::GRT *grt, grt::MetaClass *meta=0)
: model_Connection(grt, meta ? meta : grt->get_metaclass(static_class_name())),
_comment(""),
_endCaption(""),
_endCaptionXOffs(0.0),
_endCaptionYOffs(0.0),
_endMany(0),
_startCaption(""),
_startCaptionXOffs(0.0),
_startCaptionYOffs(0.0),
_startMany(0)
{
}
static std::string static_class_name() { return "workbench.logical.Connection"; }
/** Getter for attribute comment
a comment about the relationship
\par In Python:
value = obj.comment
*/
grt::StringRef comment() const { return _comment; }
/** Setter for attribute comment
a comment about the relationship
\par In Python:
obj.comment = value
*/
virtual void comment(const grt::StringRef &value)
{
grt::ValueRef ovalue(_comment);
_comment= value;
member_changed("comment", ovalue, value);
}
/** Getter for attribute endCaption
caption at the end of of the relationship
\par In Python:
value = obj.endCaption
*/
grt::StringRef endCaption() const { return _endCaption; }
/** Setter for attribute endCaption
caption at the end of of the relationship
\par In Python:
obj.endCaption = value
*/
virtual void endCaption(const grt::StringRef &value)
{
grt::ValueRef ovalue(_endCaption);
_endCaption= value;
member_changed("endCaption", ovalue, value);
}
/** Getter for attribute endCaptionXOffs
X offset of the end caption
\par In Python:
value = obj.endCaptionXOffs
*/
grt::DoubleRef endCaptionXOffs() const { return _endCaptionXOffs; }
/** Setter for attribute endCaptionXOffs
X offset of the end caption
\par In Python:
obj.endCaptionXOffs = value
*/
virtual void endCaptionXOffs(const grt::DoubleRef &value)
{
grt::ValueRef ovalue(_endCaptionXOffs);
_endCaptionXOffs= value;
member_changed("endCaptionXOffs", ovalue, value);
}
/** Getter for attribute endCaptionYOffs
Y offset of the end caption
\par In Python:
value = obj.endCaptionYOffs
*/
grt::DoubleRef endCaptionYOffs() const { return _endCaptionYOffs; }
/** Setter for attribute endCaptionYOffs
Y offset of the end caption
\par In Python:
obj.endCaptionYOffs = value
*/
virtual void endCaptionYOffs(const grt::DoubleRef &value)
{
grt::ValueRef ovalue(_endCaptionYOffs);
_endCaptionYOffs= value;
member_changed("endCaptionYOffs", ovalue, value);
}
/** Getter for attribute endFigure
the target figure
\par In Python:
value = obj.endFigure
*/
/** Setter for attribute endFigure
the target figure
\par In Python:
obj.endFigure = value
*/
/** Getter for attribute endMany
\par In Python:
value = obj.endMany
*/
grt::IntegerRef endMany() const { return _endMany; }
/** Setter for attribute endMany
\par In Python:
obj.endMany = value
*/
virtual void endMany(const grt::IntegerRef &value)
{
grt::ValueRef ovalue(_endMany);
_endMany= value;
member_changed("endMany", ovalue, value);
}
/** Getter for attribute startCaption
caption at the start of of the relationship
\par In Python:
value = obj.startCaption
*/
grt::StringRef startCaption() const { return _startCaption; }
/** Setter for attribute startCaption
caption at the start of of the relationship
\par In Python:
obj.startCaption = value
*/
virtual void startCaption(const grt::StringRef &value)
{
grt::ValueRef ovalue(_startCaption);
_startCaption= value;
member_changed("startCaption", ovalue, value);
}
/** Getter for attribute startCaptionXOffs
X offset of the start caption
\par In Python:
value = obj.startCaptionXOffs
*/
grt::DoubleRef startCaptionXOffs() const { return _startCaptionXOffs; }
/** Setter for attribute startCaptionXOffs
X offset of the start caption
\par In Python:
obj.startCaptionXOffs = value
*/
virtual void startCaptionXOffs(const grt::DoubleRef &value)
{
grt::ValueRef ovalue(_startCaptionXOffs);
_startCaptionXOffs= value;
member_changed("startCaptionXOffs", ovalue, value);
}
/** Getter for attribute startCaptionYOffs
Y offset of the start caption
\par In Python:
value = obj.startCaptionYOffs
*/
grt::DoubleRef startCaptionYOffs() const { return _startCaptionYOffs; }
/** Setter for attribute startCaptionYOffs
Y offset of the start caption
\par In Python:
obj.startCaptionYOffs = value
*/
virtual void startCaptionYOffs(const grt::DoubleRef &value)
{
grt::ValueRef ovalue(_startCaptionYOffs);
_startCaptionYOffs= value;
member_changed("startCaptionYOffs", ovalue, value);
}
/** Getter for attribute startFigure
the source figure
\par In Python:
value = obj.startFigure
*/
/** Setter for attribute startFigure
the source figure
\par In Python:
obj.startFigure = value
*/
/** Getter for attribute startMany
\par In Python:
value = obj.startMany
*/
grt::IntegerRef startMany() const { return _startMany; }
/** Setter for attribute startMany
\par In Python:
obj.startMany = value
*/
virtual void startMany(const grt::IntegerRef &value)
{
grt::ValueRef ovalue(_startMany);
_startMany= value;
member_changed("startMany", ovalue, value);
}
protected:
grt::StringRef _comment;
grt::StringRef _endCaption;
grt::DoubleRef _endCaptionXOffs;
grt::DoubleRef _endCaptionYOffs;
grt::IntegerRef _endMany;
grt::StringRef _startCaption;
grt::DoubleRef _startCaptionXOffs;
grt::DoubleRef _startCaptionYOffs;
grt::IntegerRef _startMany;
private: // wrapper methods for use by grt
static grt::ObjectRef create(grt::GRT *grt)
{
return grt::ObjectRef(new workbench_logical_Connection(grt));
}
public:
static void grt_register(grt::GRT *grt)
{
grt::MetaClass *meta= grt->get_metaclass(static_class_name());
if (!meta) throw std::runtime_error("error initializing grt object class, metaclass not found");
meta->bind_allocator(&workbench_logical_Connection::create);
{
void (workbench_logical_Connection::*setter)(const grt::StringRef &)= &workbench_logical_Connection::comment;
grt::StringRef (workbench_logical_Connection::*getter)() const= &workbench_logical_Connection::comment;
meta->bind_member("comment", new grt::MetaClass::Property<workbench_logical_Connection,grt::StringRef >(getter,setter));
}
{
void (workbench_logical_Connection::*setter)(const grt::StringRef &)= &workbench_logical_Connection::endCaption;
grt::StringRef (workbench_logical_Connection::*getter)() const= &workbench_logical_Connection::endCaption;
meta->bind_member("endCaption", new grt::MetaClass::Property<workbench_logical_Connection,grt::StringRef >(getter,setter));
}
{
void (workbench_logical_Connection::*setter)(const grt::DoubleRef &)= &workbench_logical_Connection::endCaptionXOffs;
grt::DoubleRef (workbench_logical_Connection::*getter)() const= &workbench_logical_Connection::endCaptionXOffs;
meta->bind_member("endCaptionXOffs", new grt::MetaClass::Property<workbench_logical_Connection,grt::DoubleRef >(getter,setter));
}
{
void (workbench_logical_Connection::*setter)(const grt::DoubleRef &)= &workbench_logical_Connection::endCaptionYOffs;
grt::DoubleRef (workbench_logical_Connection::*getter)() const= &workbench_logical_Connection::endCaptionYOffs;
meta->bind_member("endCaptionYOffs", new grt::MetaClass::Property<workbench_logical_Connection,grt::DoubleRef >(getter,setter));
}
{
void (workbench_logical_Connection::*setter)(const model_FigureRef &)= 0;
model_FigureRef (workbench_logical_Connection::*getter)() const= 0;
meta->bind_member("endFigure", new grt::MetaClass::Property<workbench_logical_Connection,model_FigureRef >(getter,setter));
}
{
void (workbench_logical_Connection::*setter)(const grt::IntegerRef &)= &workbench_logical_Connection::endMany;
grt::IntegerRef (workbench_logical_Connection::*getter)() const= &workbench_logical_Connection::endMany;
meta->bind_member("endMany", new grt::MetaClass::Property<workbench_logical_Connection,grt::IntegerRef >(getter,setter));
}
{
void (workbench_logical_Connection::*setter)(const grt::StringRef &)= &workbench_logical_Connection::startCaption;
grt::StringRef (workbench_logical_Connection::*getter)() const= &workbench_logical_Connection::startCaption;
meta->bind_member("startCaption", new grt::MetaClass::Property<workbench_logical_Connection,grt::StringRef >(getter,setter));
}
{
void (workbench_logical_Connection::*setter)(const grt::DoubleRef &)= &workbench_logical_Connection::startCaptionXOffs;
grt::DoubleRef (workbench_logical_Connection::*getter)() const= &workbench_logical_Connection::startCaptionXOffs;
meta->bind_member("startCaptionXOffs", new grt::MetaClass::Property<workbench_logical_Connection,grt::DoubleRef >(getter,setter));
}
{
void (workbench_logical_Connection::*setter)(const grt::DoubleRef &)= &workbench_logical_Connection::startCaptionYOffs;
grt::DoubleRef (workbench_logical_Connection::*getter)() const= &workbench_logical_Connection::startCaptionYOffs;
meta->bind_member("startCaptionYOffs", new grt::MetaClass::Property<workbench_logical_Connection,grt::DoubleRef >(getter,setter));
}
{
void (workbench_logical_Connection::*setter)(const model_FigureRef &)= 0;
model_FigureRef (workbench_logical_Connection::*getter)() const= 0;
meta->bind_member("startFigure", new grt::MetaClass::Property<workbench_logical_Connection,model_FigureRef >(getter,setter));
}
{
void (workbench_logical_Connection::*setter)(const grt::IntegerRef &)= &workbench_logical_Connection::startMany;
grt::IntegerRef (workbench_logical_Connection::*getter)() const= &workbench_logical_Connection::startMany;
meta->bind_member("startMany", new grt::MetaClass::Property<workbench_logical_Connection,grt::IntegerRef >(getter,setter));
}
}
};
/** a model figure representing a relationship */
class workbench_logical_Relationship : public model_Figure
{
typedef model_Figure super;
public:
workbench_logical_Relationship(grt::GRT *grt, grt::MetaClass *meta=0)
: model_Figure(grt, meta ? meta : grt->get_metaclass(static_class_name())),
_attributesExpanded(1)
{
}
static std::string static_class_name() { return "workbench.logical.Relationship"; }
/** Getter for attribute attributesExpanded
indicates whether the columns list is expanded
\par In Python:
value = obj.attributesExpanded
*/
grt::IntegerRef attributesExpanded() const { return _attributesExpanded; }
/** Setter for attribute attributesExpanded
indicates whether the columns list is expanded
\par In Python:
obj.attributesExpanded = value
*/
virtual void attributesExpanded(const grt::IntegerRef &value)
{
grt::ValueRef ovalue(_attributesExpanded);
_attributesExpanded= value;
member_changed("attributesExpanded", ovalue, value);
}
/** Getter for attribute relationship
the relationship that is represented
\par In Python:
value = obj.relationship
*/
eer_RelationshipRef relationship() const { return _relationship; }
/** Setter for attribute relationship
the relationship that is represented
\par In Python:
obj.relationship = value
*/
virtual void relationship(const eer_RelationshipRef &value)
{
grt::ValueRef ovalue(_relationship);
_relationship= value;
member_changed("relationship", ovalue, value);
}
protected:
grt::IntegerRef _attributesExpanded;
eer_RelationshipRef _relationship;
private: // wrapper methods for use by grt
static grt::ObjectRef create(grt::GRT *grt)
{
return grt::ObjectRef(new workbench_logical_Relationship(grt));
}
public:
static void grt_register(grt::GRT *grt)
{
grt::MetaClass *meta= grt->get_metaclass(static_class_name());
if (!meta) throw std::runtime_error("error initializing grt object class, metaclass not found");
meta->bind_allocator(&workbench_logical_Relationship::create);
{
void (workbench_logical_Relationship::*setter)(const grt::IntegerRef &)= &workbench_logical_Relationship::attributesExpanded;
grt::IntegerRef (workbench_logical_Relationship::*getter)() const= &workbench_logical_Relationship::attributesExpanded;
meta->bind_member("attributesExpanded", new grt::MetaClass::Property<workbench_logical_Relationship,grt::IntegerRef >(getter,setter));
}
{
void (workbench_logical_Relationship::*setter)(const eer_RelationshipRef &)= &workbench_logical_Relationship::relationship;
eer_RelationshipRef (workbench_logical_Relationship::*getter)() const= &workbench_logical_Relationship::relationship;
meta->bind_member("relationship", new grt::MetaClass::Property<workbench_logical_Relationship,eer_RelationshipRef >(getter,setter));
}
}
};
/** a model figure representing a table */
class workbench_logical_Entity : public model_Figure
{
typedef model_Figure super;
public:
workbench_logical_Entity(grt::GRT *grt, grt::MetaClass *meta=0)
: model_Figure(grt, meta ? meta : grt->get_metaclass(static_class_name())),
_attributesExpanded(1)
{
}
static std::string static_class_name() { return "workbench.logical.Entity"; }
/** Getter for attribute attributesExpanded
indicates whether the columns list is expanded
\par In Python:
value = obj.attributesExpanded
*/
grt::IntegerRef attributesExpanded() const { return _attributesExpanded; }
/** Setter for attribute attributesExpanded
indicates whether the columns list is expanded
\par In Python:
obj.attributesExpanded = value
*/
virtual void attributesExpanded(const grt::IntegerRef &value)
{
grt::ValueRef ovalue(_attributesExpanded);
_attributesExpanded= value;
member_changed("attributesExpanded", ovalue, value);
}
/** Getter for attribute entity
the entity this figure represents
\par In Python:
value = obj.entity
*/
eer_EntityRef entity() const { return _entity; }
/** Setter for attribute entity
the entity this figure represents
\par In Python:
obj.entity = value
*/
virtual void entity(const eer_EntityRef &value)
{
grt::ValueRef ovalue(_entity);
_entity= value;
member_changed("entity", ovalue, value);
}
protected:
grt::IntegerRef _attributesExpanded;
eer_EntityRef _entity;
private: // wrapper methods for use by grt
static grt::ObjectRef create(grt::GRT *grt)
{
return grt::ObjectRef(new workbench_logical_Entity(grt));
}
public:
static void grt_register(grt::GRT *grt)
{
grt::MetaClass *meta= grt->get_metaclass(static_class_name());
if (!meta) throw std::runtime_error("error initializing grt object class, metaclass not found");
meta->bind_allocator(&workbench_logical_Entity::create);
{
void (workbench_logical_Entity::*setter)(const grt::IntegerRef &)= &workbench_logical_Entity::attributesExpanded;
grt::IntegerRef (workbench_logical_Entity::*getter)() const= &workbench_logical_Entity::attributesExpanded;
meta->bind_member("attributesExpanded", new grt::MetaClass::Property<workbench_logical_Entity,grt::IntegerRef >(getter,setter));
}
{
void (workbench_logical_Entity::*setter)(const eer_EntityRef &)= &workbench_logical_Entity::entity;
eer_EntityRef (workbench_logical_Entity::*getter)() const= &workbench_logical_Entity::entity;
meta->bind_member("entity", new grt::MetaClass::Property<workbench_logical_Entity,eer_EntityRef >(getter,setter));
}
}
};
/** a model diagram holding layers */
class GRT_STRUCTS_WORKBENCH_LOGICAL_PUBLIC workbench_logical_Diagram : public model_Diagram
{
typedef model_Diagram super;
public:
class ImplData;
friend class ImplData;
workbench_logical_Diagram(grt::GRT *grt, grt::MetaClass *meta=0)
: model_Diagram(grt, meta ? meta : grt->get_metaclass(static_class_name())),
_data(0)
{
}
virtual ~workbench_logical_Diagram();
static std::string static_class_name() { return "workbench.logical.Diagram"; }
/** Method.
\param x
\param y
\param width
\param height
\param name
\return
*/
virtual model_LayerRef placeNewLayer(double x, double y, double width, double height, const std::string &name);
ImplData *get_data() const { return _data; }
void set_data(ImplData *data);
// default initialization function. auto-called by ObjectRef constructor
virtual void init();
protected:
private: // wrapper methods for use by grt
ImplData *_data;
static grt::ObjectRef create(grt::GRT *grt)
{
return grt::ObjectRef(new workbench_logical_Diagram(grt));
}
static grt::ValueRef call_placeNewLayer(grt::internal::Object *self, const grt::BaseListRef &args){ return dynamic_cast<workbench_logical_Diagram*>(self)->placeNewLayer(grt::DoubleRef::cast_from(args[0]), grt::DoubleRef::cast_from(args[1]), grt::DoubleRef::cast_from(args[2]), grt::DoubleRef::cast_from(args[3]), grt::StringRef::cast_from(args[4])); }
public:
static void grt_register(grt::GRT *grt)
{
grt::MetaClass *meta= grt->get_metaclass(static_class_name());
if (!meta) throw std::runtime_error("error initializing grt object class, metaclass not found");
meta->bind_allocator(&workbench_logical_Diagram::create);
meta->bind_method("placeNewLayer", &workbench_logical_Diagram::call_placeNewLayer);
}
};
/** a logical model holding diagrams */
class GRT_STRUCTS_WORKBENCH_LOGICAL_PUBLIC workbench_logical_Model : public model_Model
{
typedef model_Model super;
public:
class ImplData;
friend class ImplData;
workbench_logical_Model(grt::GRT *grt, grt::MetaClass *meta=0)
: model_Model(grt, meta ? meta : grt->get_metaclass(static_class_name())),
_data(0)
{
_diagrams.content().__retype(grt::ObjectType, "workbench.logical.Diagram");
}
virtual ~workbench_logical_Model();
static std::string static_class_name() { return "workbench.logical.Model"; }
// diagrams is owned by workbench_logical_Model
/** Getter for attribute diagrams (read-only)
the list of all available diagrams
\par In Python:
value = obj.diagrams
*/
grt::ListRef<workbench_logical_Diagram> diagrams() const { return grt::ListRef<workbench_logical_Diagram>::cast_from(_diagrams); }
private: // the next attribute is read-only
public:
/** Method.
\param deferRealize
\return
*/
virtual model_DiagramRef addNewDiagram(ssize_t deferRealize);
ImplData *get_data() const { return _data; }
void set_data(ImplData *data);
// default initialization function. auto-called by ObjectRef constructor
virtual void init();
protected:
private: // wrapper methods for use by grt
ImplData *_data;
static grt::ObjectRef create(grt::GRT *grt)
{
return grt::ObjectRef(new workbench_logical_Model(grt));
}
static grt::ValueRef call_addNewDiagram(grt::internal::Object *self, const grt::BaseListRef &args){ return dynamic_cast<workbench_logical_Model*>(self)->addNewDiagram(grt::IntegerRef::cast_from(args[0])); }
public:
static void grt_register(grt::GRT *grt)
{
grt::MetaClass *meta= grt->get_metaclass(static_class_name());
if (!meta) throw std::runtime_error("error initializing grt object class, metaclass not found");
meta->bind_allocator(&workbench_logical_Model::create);
{
void (workbench_logical_Model::*setter)(const grt::ListRef<workbench_logical_Diagram> &)= 0;
grt::ListRef<workbench_logical_Diagram> (workbench_logical_Model::*getter)() const= 0;
meta->bind_member("diagrams", new grt::MetaClass::Property<workbench_logical_Model,grt::ListRef<workbench_logical_Diagram> >(getter,setter));
}
meta->bind_method("addNewDiagram", &workbench_logical_Model::call_addNewDiagram);
}
};
inline void register_structs_workbench_logical_xml()
{
grt::internal::ClassRegistry::register_class<workbench_logical_Connection>();
grt::internal::ClassRegistry::register_class<workbench_logical_Relationship>();
grt::internal::ClassRegistry::register_class<workbench_logical_Entity>();
grt::internal::ClassRegistry::register_class<workbench_logical_Diagram>();
grt::internal::ClassRegistry::register_class<workbench_logical_Model>();
}
#ifdef AUTO_REGISTER_GRT_CLASSES
static struct _autoreg__structs_workbench_logical_xml { _autoreg__structs_workbench_logical_xml() { register_structs_workbench_logical_xml(); } } __autoreg__structs_workbench_logical_xml;
#endif
|