CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    String class wanted

    Hi!
    Anyone who have a simple regular string class (not MFC's CString).
    It will be runned on UNIX and Windows.

    // Jocke


  2. #2
    Join Date
    Apr 1999
    Posts
    383

    Re: String class wanted

    Use the STL string (in the std namespace):

    #include <string>
    using std::string;

    string hello = "Hello";

    Dave




Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured