summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/LocalObject.h
blob: 26ff71bd9bcb23736abd70b94827c98d8821bf00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// **********************************************************************
//
// Copyright (c) 2001
// MutableRealms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************

#ifndef ICE_LOCAL_OBJECT_H
#define ICE_LOCAL_OBJECT_H

#include <Ice/LocalObjectF.h>
#include <Ice/ProxyF.h> // TODO...
#include <Ice/Shared.h>

namespace __Ice
{

class Stream;

}

namespace Ice
{

// No virtual inheritance for local objects
class ICE_API LocalObject : public ::__Ice::Shared
{
public:

    LocalObject();
    virtual ~LocalObject();

    virtual void __write(::__Ice::Stream*) = 0;
    virtual void __read(::__Ice::Stream*) = 0;
};

}

#endif