Changeset 8624
- Timestamp:
- 01/30/09 16:20:10 (4 years ago)
- Location:
- ossiedev/branches/ttsou/dist/components/gmsk_mod
- Files:
-
- 2 modified
-
gmsk_mod.cpp (modified) (1 diff)
-
main.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ossiedev/branches/ttsou/dist/components/gmsk_mod/gmsk_mod.cpp
r8612 r8624 51 51 p_in = complexShort_p_sptr(new standardInterfaces_i::complexShort_p("samples_in")); 52 52 p_out = complexShort_u_sptr(new standardInterfaces_i::complexShort_u("samples_out")); 53 54 start(); 53 55 } 54 56 -
ossiedev/branches/ttsou/dist/components/gmsk_mod/main.cpp
r8612 r8624 48 48 cout << "Identifier - " << uuid << " Label - " << label << endl; 49 49 50 gmsk_mod_i* channeldemo_servant;51 CF::Resource_var channeldemo_var;50 gmsk_mod_i* gmsk_mod_servant; 51 CF::Resource_var gmsk_mod_var; 52 52 53 // Create the channeldemocomponent servant and object reference53 // Create the gmsk_mod component servant and object reference 54 54 55 channeldemo_servant = new gmsk_mod_i(uuid, component_running);56 channeldemo_var = channeldemo_servant->_this();55 gmsk_mod_servant = new gmsk_mod_i(uuid, component_running); 56 gmsk_mod_var = gmsk_mod_servant->_this(); 57 57 58 orb->bind_object_to_name((CORBA::Object_ptr) channeldemo_var, label);58 orb->bind_object_to_name((CORBA::Object_ptr) gmsk_mod_var, label); 59 59 60 60 // This bit is ORB specific