From: Peter Claessens Newsgroups: comp.os.msdos.djgpp Subject: Re: namespace not yet implemented? Date: Tue, 13 Apr 1999 00:01:03 +0200 Organization: KULeuvenNet Lines: 26 Message-ID: <37126D1F.61927A8E@student.kuleuven.ac.be> References: <3712502F DOT 2233A3E8 AT sci DOT kun DOT nl> NNTP-Posting-Host: marvin.kulnet.kuleuven.ac.be Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: naxos.belnet.be 923954476 27982 134.58.127.3 (12 Apr 1999 22:01:16 GMT) X-Complaints-To: abuse AT belnet DOT be NNTP-Posting-Date: 12 Apr 1999 22:01:16 GMT X-Mailer: Mozilla 4.5 [en] (Win95; I) X-Accept-Language: en Cache-Post-Path: marvin!unknown AT kn-10-0-46-002 DOT kotnet DOT kuleuven DOT ac DOT be X-Cache: nntpcache 2.3.3 (see http://www.nntpcache.org/) To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com > std;" line, so I assumed namespaces were implemented. > > So it was quite a disappointment to get the message "sorry not > implemented: namespace" when I first tried to define my own namespace. I > > c++ [many thanx to all who contributed] was being kept closely up to the > new ANSI C++ standards ? And is there any sensible guess about WHEN it > will be implemented? That is right. And actually GNU C++ is close to the standards. Namespace is hardly implemented in DJGPP C++ because it is hardly implemented in GNU C++ either. At least at this point. Anyway, look for the egcs compiler in for example http://www.delorie.com/djgpp/dl/ofc/simtel.cgi/simtel/v2gnu/egcs/ , or for the pgc compiler (the pentium variant of egcs) at http://www.goof.com/pcg/djgpp/index.html . Egcs can handle namespaces, but can cause troubles with STL or exception handling. I found this and other information by a power search on www.dejanews.com with namespace in the subject field and comp.os.msdos.djgpp as forum. Good luck with egcs. Peter.