| 393 | |
| 394 | |
| 395 | string System::get_constructor(int& cons) const |
| 396 | { |
| 397 | #if defined(USES_DLLMAIN) |
| 398 | cons = 1; |
| 399 | #elif defined(USES_CONSTRUCTOR) |
| 400 | cons = 2; |
| 401 | #else |
| 402 | cons = 0; |
| 403 | #endif |
| 404 | |
| 405 | return DDS_SYSTEM_CONSTRUCTOR[static_cast<unsigned>(cons)]; |
| 406 | } |
| 407 | |
| 408 | |
| 409 | int System::get_cores() const |