summaryrefslogtreecommitdiff
path: root/ace/Svc_Conf_Lexer_Guard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Svc_Conf_Lexer_Guard.cpp')
-rw-r--r--ace/Svc_Conf_Lexer_Guard.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/ace/Svc_Conf_Lexer_Guard.cpp b/ace/Svc_Conf_Lexer_Guard.cpp
deleted file mode 100644
index b498bd855c1..00000000000
--- a/ace/Svc_Conf_Lexer_Guard.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-// -*- C++ -*-
-
-#include "ace/Svc_Conf.h"
-
-#include "ace/Svc_Conf_Lexer_Guard.h"
-
-ACE_RCSID (ace,
- Svc_Conf_Lexer_Guard,
- "$Id$")
-
-ACE_Svc_Conf_Lexer_Guard::ACE_Svc_Conf_Lexer_Guard (FILE *file)
-{
- // External synchronization is required.
-
- ::ace_yy_push_buffer (file);
-}
-
-ACE_Svc_Conf_Lexer_Guard::ACE_Svc_Conf_Lexer_Guard (const ACE_TCHAR *directive)
-{
- // External synchronization is required.
-
- ::ace_yy_push_buffer (directive);
-}
-
-
-ACE_Svc_Conf_Lexer_Guard::~ACE_Svc_Conf_Lexer_Guard (void)
-{
- // External synchronization is required.
-
- ::ace_yy_pop_buffer ();
-}