代码搜索:impl
找到约 10,000 项符合「impl」的源代码
代码结果 10,000
www.eeworm.com/read/416830/2106228
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/416830/2106231
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/416830/2106234
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/416830/2106240
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/416830/2106241
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/416830/2106250
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/416830/2106279
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)
{
www.eeworm.com/read/416830/2106286
cc philo_impl.cc
/*
* Mico --- a free CORBA implementation
* Copyright Frank Pilhofer
*
* This file is part of MicoCCM, written by Frank Pilhofer.
* The MICO CORBA Component Project was sponsored by Alcatel.
www.eeworm.com/read/416830/2106291
h message_impl.h
#ifndef __EVENT_IMPL_H__
#define __EVENT_IMPL_H__
#include "message.h"
class Message_impl :
virtual public OBV_Message,
virtual public CORBA::DefaultValueRefCountBase
{
public:
Message_impl (
www.eeworm.com/read/416830/2106294
cc message_impl.cc
#include "message_impl.h"
Message_impl::Message_impl ()
{
text ((const char *) "");
}
CORBA::ValueBase *
MessageFactory::create_for_unmarshal ()
{
return new Message_impl;
}