summaryrefslogtreecommitdiff
path: root/comm
diff options
context:
space:
mode:
authorchatty1995-08-01 17:30:27 +0000
committerchatty1995-08-01 17:30:27 +0000
commit7e45ec4b6e34b2d96ba10b4d898e201d67b34d5e (patch)
tree1892ebf36347b5c4d2b35c4c4b63a1e427eba2c5 /comm
parentac7ca438f1e76e0976d9de06b002716cdfae0a0a (diff)
downloadivy-league-7e45ec4b6e34b2d96ba10b4d898e201d67b34d5e.zip
ivy-league-7e45ec4b6e34b2d96ba10b4d898e201d67b34d5e.tar.gz
ivy-league-7e45ec4b6e34b2d96ba10b4d898e201d67b34d5e.tar.bz2
ivy-league-7e45ec4b6e34b2d96ba10b4d898e201d67b34d5e.tar.xz
yyparse -> Uch_parse
Diffstat (limited to 'comm')
-rw-r--r--comm/OLD/ReqMgr.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/comm/OLD/ReqMgr.h b/comm/OLD/ReqMgr.h
index eeb10d9..b3e381c 100644
--- a/comm/OLD/ReqMgr.h
+++ b/comm/OLD/ReqMgr.h
@@ -3,7 +3,7 @@
*
* by Michel Beaudouin-Lafon
*
- * Copyright 1993
+ * Copyright 1993-1995
* Centre d'Etudes de la Navigation Aerienne (CENA)
*
* Request management, by Stephane Chatty
@@ -34,7 +34,7 @@ inline const char* GetImpl () const { return Impl; }
};
class MsgConstructor {
-friend int yyparse ();
+friend int Uch_parse ();
protected:
CcuListOf <MsgField> Params;
public:
@@ -43,7 +43,7 @@ inline const CcuListOf <MsgField>& GetParameters () const { return Params; }
};
class MsgType {
-friend int yyparse ();
+friend int Uch_parse ();
public:
enum msg_kind { isRequest, isAnswer, isEvent };
@@ -74,7 +74,7 @@ inline const char* GetName () const { return Name; }
enum destination { isClient = 1<<0, isServer = 1<<1};
class UchMsgMgr {
-friend int yyparse ();
+friend int Uch_parse ();
protected:
CcuString Name;