PaCO++  0.05
PaCO++_src.cc File Reference
#include "PaCO++_operation.h"
#include "PaCO++_src.h"
Include dependency graph for PaCO++_src.cc:

Go to the source code of this file.

Functions

static ostream & operator<< (ostream &os, const CORBA::Exception &e)
paco_fabrique_managerpaco_getFabriqueManager ()
void * paco_orb_run (void *arg)

Variables

PaCO::PacoTopology_t PacoTopologySeq = { 1 }

Function Documentation

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;
}

Variable Documentation

Definition at line 5 of file PaCO++_src.cc.