|
Dump the current Status of the InputManager, listing all the devices, proxies and internal settings.
Definition at line 726 of file ClusterManager.cpp.
00727 {
00728 out << "\n========== ClusterManager Status ==========" << std::endl;
00729 out << "Plugins:\n";
00730
00731
00732 for ( std::list<ClusterPlugin*>::iterator i = mgr.mPlugins.begin();
00733 i != mgr.mPlugins.end();
00734 ++i)
00735 {
00736 if ((*i) != NULL)
00737 {
00738 out << " name:" << std::setw(30) << std::setfill(' ') << (*i)->getPluginName()
00739 << " guid:" << std::setw(30) << std::setfill(' ') << (*i)->getPluginGUID()
00740 << " active:" << std::setw(7) << std::setfill(' ')
00741 << ((*i)->isActive() ? "true" : "false") << std::endl;
00742 }
00743 }
00744
00745 out << std::endl;
00746
00747 return out;
00748 }
|