]> cygwin.com Git - cygwin-apps/setup.git/blobdiff - cistring.h
2001-01-04 Gary R. Van Sickle <g.r.vansickle@worldnet.att.net>
[cygwin-apps/setup.git] / cistring.h
index 2873e28dd4b369376b917f8343c59b443a881602..72ca49b57eb4ca806e3a6e5c2daec6a9fa36a69f 100644 (file)
@@ -1,41 +1,41 @@
-/*\r
- * Copyright (c) 2001, Gary R. Van Sickle.\r
- *\r
- *     This program is free software; you can redistribute it and/or modify\r
- *     it under the terms of the GNU General Public License as published by\r
- *     the Free Software Foundation; either version 2 of the License, or\r
- *     (at your option) any later version.\r
- *\r
- *     A copy of the GNU General Public License can be found at\r
- *     http://www.gnu.org/\r
- *\r
- * Written by Gary R. Van Sickle <g.r.vansickle@worldnet.att.net>\r
- *\r
- */\r
-\r
-// Yep, another string class\r
-\r
-#include <windows.h>\r
-\r
-class cistring\r
-{\r
-  TCHAR *buffer;\r
-public:\r
-    cistring ()\r
-  {\r
-    buffer = NULL;\r
-  };\r
-  cistring (const TCHAR * s);\r
-  ~cistring ()\r
-  {\r
-    if (buffer != NULL)\r
-      delete[]buffer;\r
-  };\r
-\r
-  const TCHAR *c_str ()\r
-  {\r
-    return buffer;\r
-  };\r
-\r
-  DWORD Format (UINT i, ...);\r
-};\r
+/*
+ * Copyright (c) 2001, Gary R. Van Sickle.
+ *
+ *     This program is free software; you can redistribute it and/or modify
+ *     it under the terms of the GNU General Public License as published by
+ *     the Free Software Foundation; either version 2 of the License, or
+ *     (at your option) any later version.
+ *
+ *     A copy of the GNU General Public License can be found at
+ *     http://www.gnu.org/
+ *
+ * Written by Gary R. Van Sickle <g.r.vansickle@worldnet.att.net>
+ *
+ */
+
+// Yep, another string class
+
+#include <windows.h>
+
+class cistring
+{
+  TCHAR *buffer;
+public:
+    cistring ()
+  {
+    buffer = NULL;
+  };
+  cistring (const TCHAR * s);
+  ~cistring ()
+  {
+    if (buffer != NULL)
+      delete[]buffer;
+  };
+
+  const TCHAR *c_str ()
+  {
+    return buffer;
+  };
+
+  DWORD Format (UINT i, ...);
+};
This page took 0.028936 seconds and 5 git commands to generate.