|
PaCO++
0.05
|

Go to the source code of this file.
Functions | |
| static ostream & | operator<< (ostream &os, const CORBA::Exception &e) |
| paco_fabrique_manager * | paco_getFabriqueManager () |
| void * | paco_orb_run (void *arg) |
Variables | |
| PaCO::PacoTopology_t | PacoTopologySeq = { 1 } |
| static ostream& operator<< | ( | ostream & | os, |
| const CORBA::Exception & | e | ||
| ) | [static] |
Definition at line 8 of file PaCO++_src.cc.
{
CORBA::Any tmp;
tmp <<=e ;
CORBA::TypeCode_var tc = tmp.type();
const char * p = tc->name ();
if (*p != '\0')
os << p;
else
os << tc->id();
return os;
}
Definition at line 28 of file PaCO++_src.cc.
Referenced by PaCO_operation::PaCO_operation().
{
static paco_fabrique_manager* pfm=NULL;
if (!pfm)
pfm = new paco_fabrique_manager();
return pfm;
}
| void* paco_orb_run | ( | void * | arg | ) |
Definition at line 21 of file PaCO++_src.cc.
{
CORBA::ORB_ptr orb = (CORBA::ORB_ptr) arg;
orb->run();
return (void*) 0;
}
| PaCO::PacoTopology_t PacoTopologySeq = { 1 } |
Definition at line 5 of file PaCO++_src.cc.