代码搜索:impl
找到约 10,000 项符合「impl」的源代码
代码结果 10,000
www.eeworm.com/read/247212/4483886
cc custom_impl.cc
#include "custom_impl.h"
using namespace std;
CORBA::Long
CustomValue_impl::value ()
{
return 42;
}
void
CustomValue_impl::marshal (CORBA::DataOutputStream * os)
{
cout
www.eeworm.com/read/247212/4483889
h custom_impl.h
#ifndef __CUSTOM_IMPL_H__
#define __CUSTOM_IMPL_H__
#include "custom.h"
class CustomValue_impl :
virtual public CustomValue,
virtual public CORBA::DefaultValueRefCountBase
{
public:
CORBA::Lon
www.eeworm.com/read/247212/4483896
cc tricky_impl.cc
/*
* Implementations
*/
#include "tricky.h"
#include "tricky_impl.h"
CORBA::ValueBase *
vt_factory::create_for_unmarshal ()
{
return new vt_impl;
}
CORBA::ValueBase *
base_factory::create_for_
www.eeworm.com/read/247212/4483900
h tricky_impl.h
/*
* Implementation for the date valuetype and its factory
*/
#ifndef __DATE_IMPL_H__
#define __DATE_IMPL_H__
#include "tricky.h"
class vt_impl :
virtual public OBV_vt,
virtual public CORBA:
www.eeworm.com/read/247212/4483903
cc tree_impl.cc
/*
* Implementations for our valuetypes.
*/
#include "tree.h"
#include "tree_impl.h"
TreeNode_impl::TreeNode_impl ()
{
}
TreeNode_impl::TreeNode_impl (Key * k, Node * n)
{
key (k);
data (n);
www.eeworm.com/read/247212/4483906
h tree_impl.h
/*
* Implementations for our valuetypes. Note the inheritance for
* BinaryTree_impl, which is both a valuetype and a servant.
*/
#ifndef __TREE_IMPL_H__
#define __TREE_IMPL_H__
#include "tree.h"
www.eeworm.com/read/247212/4483912
cc date_impl.cc
/*
* Implementation for the date valuetype and its factory
*/
#include "date.h"
#include "date_impl.h"
date_impl::date_impl (CORBA::UShort dd, CORBA::UShort mm,
CORBA::UShort yyyy)
{
da
www.eeworm.com/read/247212/4483913
h date_impl.h
/*
* Implementation for the date valuetype and its factory
*/
#ifndef __DATE_IMPL_H__
#define __DATE_IMPL_H__
#include "date.h"
class date_impl :
virtual public OBV_date,
virtual public CORB
www.eeworm.com/read/247212/4483922
h abstract_impl.h
#include "abstract.h"
#ifndef __ABSTRACT_IMPL_H__
#define __ABSTRACT_IMPL_H__
class Currency_impl :
virtual public OBV_Currency,
virtual public CORBA::DefaultValueRefCountBase
{
public:
Curren
www.eeworm.com/read/247212/4483951
cc hello_impl.cc
#include "hello.h"
using namespace std;
class HelloWorld_impl : virtual public CCM_HelloWorld {
private:
CORBA::String_var _message;
public:
HelloWorld_impl (const char * initial)
{