Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
558 B

  1. // String.h: interface for the String class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_STRING_H__A4E3AB51_211E_4A38_827E_E54BC1C30803__INCLUDED_)
  5. #define AFX_STRING_H__A4E3AB51_211E_4A38_827E_E54BC1C30803__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "Object.h"
  10. class StringNode : public Object
  11. {
  12. public:
  13. TCHAR * str;
  14. StringNode(TCHAR* s);
  15. TCHAR* Data();
  16. };
  17. #endif // !defined(AFX_STRING_H__A4E3AB51_211E_4A38_827E_E54BC1C30803__INCLUDED_)