blob: 59b8f568efea8f8819236d78d52f6b9a6477cca1 (
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
43
44
45
46
47
48
49
50
51
|
// -*- C++ -*-
//=============================================================================
/**
* @file Storable_Factory.h
*
* @author Byron Harris <harrisb@ociweb.com>
*/
//=============================================================================
#ifndef TAO_STORABLE_FACTORY_H
#define TAO_STORABLE_FACTORY_H
#include /**/ "ace/pre.h"
#include "ace/config-lite.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/Storable_Base.h"
#include "ace/SString.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
class TAO_Export Storable_Factory
{
public:
Storable_Factory();
virtual ~Storable_Factory();
// Factory Methods
virtual Storable_Base *create_stream(const ACE_CString & file,
const char * mode,
bool use_backup =
Storable_Base::use_backup_default) = 0;
};
}
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_STORABLE_FACTORY_H */
|