代码搜索:impl
找到约 10,000 项符合「impl」的源代码
代码结果 10,000
www.eeworm.com/read/416830/2106815
h val_impl.h
#ifndef __VAL_IMPL_H__
#define __VAL_IMPL_H__
#include
class Val_impl
: virtual public OBV_Val,
virtual public CORBA::DefaultValueRefCountBase
{
public:
Val_impl(CORBA::Long
www.eeworm.com/read/416830/2106818
cc val_impl.cc
#include
CORBA::ValueBase*
ValFactory_impl::create_for_unmarshal()
{
return new Val_impl;
}
www.eeworm.com/read/416830/2106876
cc simple_impl.cc
#include "simple_impl.h"
// Implementation for interface simple
void
simple_impl::func( CORBA::Char id ) throw( ::CORBA::SystemException) {
// cout
www.eeworm.com/read/416830/2106882
h simple_impl.h
#ifndef __SIMPLE_IMPL_H__
#define __SIMPLE_IMPL_H__
#include "simple.h"
// Implementation for interface simple
class simple_impl : virtual public POA_simple
{
public:
void func( CORBA::Char
www.eeworm.com/read/416830/2106884
cc simple_impl.cc
#include "simple_impl.h"
// Implementation for interface simple1
void
simple_impl1::func( CORBA::Char id ) throw( ::CORBA::SystemException)
{
__MTSAVE( MICODebug::instance()->printer()
www.eeworm.com/read/416830/2106890
h simple_impl.h
#ifndef __SIMPLE_IMPL_H__
#define __SIMPLE_IMPL_H__
#include "simple.h"
// Implementation for interface simple
class simple_impl1 : virtual public POA_simple1
{
public:
void func( CORBA::Ch
www.eeworm.com/read/416830/2106893
cc simple_impl.cc
#include "simple_impl.h"
// Implementation for interface simple
void
simple_impl::func( CORBA::Char id ) throw( ::CORBA::SystemException) {
// cout
www.eeworm.com/read/416830/2106900
h simple_impl.h
#ifndef __SIMPLE_IMPL_H__
#define __SIMPLE_IMPL_H__
#include "simple.h"
// Implementation for interface simple
class simple_impl : virtual public POA_simple
{
public:
void func( CORBA::Char
www.eeworm.com/read/416830/2107459
cc derived_impl.cc
#include "derived_impl.h"
derived_impl::derived_impl()
{
}
www.eeworm.com/read/416830/2107464
h derived_impl.h
#ifndef __DERIVED_IMPL_H__
#define __DERIVED_IMPL_H__
#include "derived.h"
#include "base_impl.h"
class derived_impl : virtual public base_impl,
virtual public POA_derived
{
p