blob: fbb42aef397acf8efe24dda4bf3c2b0884a2e427 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// **********************************************************************
//
// Copyright (c) 2001
// MutableRealms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
#ifndef FACTORY_H
#define FACTORY_H
class Factory : public Ice::ValueFactory
{
public:
virtual Ice::ObjectPtr create(const std::string&);
};
#endif
|