Also use Objects as part of an operation but as a result don't generate Any operation...
[ACE_TAO.git] / ACE / ace / OS_NS_regex.h
blob8851abe4944bc7bbea32e3177670b3eb6a023a61
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 * Originally in OS.h.
13 //=============================================================================
15 #ifndef ACE_OS_NS_REGEX_H
16 # define ACE_OS_NS_REGEX_H
18 # include /**/ "ace/pre.h"
20 # include "ace/config-all.h"
22 # if !defined (ACE_LACKS_PRAGMA_ONCE)
23 # pragma once
24 # endif /* ACE_LACKS_PRAGMA_ONCE */
26 #include /**/ "ace/ACE_export.h"
28 #if defined (ACE_EXPORT_MACRO)
29 # undef ACE_EXPORT_MACRO
30 #endif
31 #define ACE_EXPORT_MACRO ACE_Export
33 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
35 namespace ACE_OS
38 // non=standard..
39 //@{ @name A set of wrappers for regular expressions.
40 ACE_NAMESPACE_INLINE_FUNCTION
41 char *compile (const char *instring,
42 char *expbuf,
43 char *endbuf);
45 ACE_NAMESPACE_INLINE_FUNCTION
46 int step (const char *str,
47 char *expbuf);
48 //@}
50 } /* namespace ACE_OS */
52 ACE_END_VERSIONED_NAMESPACE_DECL
54 # if defined (ACE_HAS_INLINED_OSCALLS)
55 # if defined (ACE_INLINE)
56 # undef ACE_INLINE
57 # endif /* ACE_INLINE */
58 # define ACE_INLINE inline
59 # include "ace/OS_NS_regex.inl"
60 # endif /* ACE_HAS_INLINED_OSCALLS */
62 # include /**/ "ace/post.h"
63 #endif /* ACE_OS_NS_REGEX_H */