Changes to attempt to silence bcc64x
[ACE_TAO.git] / ACE / ace / OS_NS_regex.h
blob57e6fe0cf6191d17fc4f5d73286dcf65f77f8c55
1 // -*- C++ -*-
3 //=============================================================================
4 /**
5 * @file OS_NS_regex.h
7 * @author Douglas C. Schmidt <d.schmidt@vanderbilt.edu>
8 * @author Jesper S. M|ller<stophph@diku.dk>
9 * @author and a cast of thousands...
11 //=============================================================================
13 #ifndef ACE_OS_NS_REGEX_H
14 # define ACE_OS_NS_REGEX_H
16 # include /**/ "ace/pre.h"
18 # include "ace/config-all.h"
20 # if !defined (ACE_LACKS_PRAGMA_ONCE)
21 # pragma once
22 # endif /* ACE_LACKS_PRAGMA_ONCE */
24 #include /**/ "ace/ACE_export.h"
26 #if defined (ACE_EXPORT_MACRO)
27 # undef ACE_EXPORT_MACRO
28 #endif
29 #define ACE_EXPORT_MACRO ACE_Export
31 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
33 namespace ACE_OS
35 // non=standard..
36 //@{ @name A set of wrappers for regular expressions.
37 ACE_NAMESPACE_INLINE_FUNCTION
38 char *compile (const char *instring,
39 char *expbuf,
40 char *endbuf);
42 ACE_NAMESPACE_INLINE_FUNCTION
43 int step (const char *str,
44 char *expbuf);
45 //@}
47 } /* namespace ACE_OS */
49 ACE_END_VERSIONED_NAMESPACE_DECL
51 # if defined (ACE_HAS_INLINED_OSCALLS)
52 # if defined (ACE_INLINE)
53 # undef ACE_INLINE
54 # endif /* ACE_INLINE */
55 # define ACE_INLINE inline
56 # include "ace/OS_NS_regex.inl"
57 # endif /* ACE_HAS_INLINED_OSCALLS */
59 # include /**/ "ace/post.h"
60 #endif /* ACE_OS_NS_REGEX_H */