Borland's C++Builder
By Gregory V. Wilson
Dr. Dobb's Journal May 1997
(a)
using namespace Sysutils;
(b)
#include <string>
using namespace std;
Example 1: (a) Statement that puts everything previously in the Sysutils namespace back into the global namespace; (b) attempt at using the ANSI header file format to include the standard C++ string class.
Back to Article
Copyright © 1997, Dr. Dobb's Journal