[prev in list] [next in list] [prev in thread] [next in thread] 

List:       helix-server-cvs
Subject:    [Server-cvs] tools/unittest/services/pub ut_clfact.h,1.2,1.3
From:       dcollins () helixcommunity ! org
Date:       2010-09-18 19:43:07
Message-ID: 201009181942.o8IJgdea032272 () mailer ! progressive-comp ! com
[Download RAW message or body]

Update of /cvsroot/server/tools/unittest/services/pub
In directory cvs01.internal.helixcommunity.org:/tmp/cvs-serv7345/pub

Modified Files:
	ut_clfact.h 
Log Message:
fix VC10 build-busters caused by mixed Unix/Windows newlines


Index: ut_clfact.h
===================================================================
RCS file: /cvsroot/server/tools/unittest/services/pub/ut_clfact.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- ut_clfact.h	1 Aug 2008 18:54:40 -0000	1.2
+++ ut_clfact.h	18 Sep 2010 19:43:05 -0000	1.3
@@ -1,74 +1,74 @@
-/* ***** BEGIN LICENSE BLOCK *****  
- * Source last modified: $Id$ 
- *   
- * Portions Copyright (c) 1995-2003 RealNetworks, Inc. All Rights Reserved.  
- *       
- * The contents of this file, and the files included with this file, 
- * are subject to the current version of the RealNetworks Public 
- * Source License (the "RPSL") available at 
- * http://www.helixcommunity.org/content/rpsl unless you have licensed 
- * the file under the current version of the RealNetworks Community 
- * Source License (the "RCSL") available at 
- * http://www.helixcommunity.org/content/rcsl, in which case the RCSL 
- * will apply. You may also obtain the license terms directly from 
- * RealNetworks.  You may not use this file except in compliance with 
- * the RPSL or, if you have a valid RCSL with RealNetworks applicable 
- * to this file, the RCSL.  Please see the applicable RPSL or RCSL for 
- * the rights, obligations and limitations governing use of the 
- * contents of the file. 
- *   
- * This file is part of the Helix DNA Technology. RealNetworks is the 
- * developer of the Original Code and owns the copyrights in the 
- * portions it created. 
- *   
- * This file, and the files included with this file, is distributed 
- * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY 
- * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS 
- * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES 
- * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET 
- * ENJOYMENT OR NON-INFRINGEMENT. 
- *  
- * Technology Compatibility Kit Test Suite(s) Location:  
- *    http://www.helixcommunity.org/content/tck  
- *  
- * Contributor(s):  
- *   
- * ***** END LICENSE BLOCK ***** */  
-
-#ifndef _UT_CLFACT_H_
-#define _UT_CLFACT_H_
-
-#include "hxccf.h"
-
-/**
-  * \brief      CUTClassFactory - Implement IHXCommonClassFactory for unit testing
-  * 
-  * A simple implementation that provides IHXBuffer, IHXPacket and IHXValues.
-  */
-class CUTClassFactory: public IHXCommonClassFactory
-{
-public:
-    CUTClassFactory(IUnknown *pContext=NULL);
-    ~CUTClassFactory();
-
-    // IUnknown methods, ref hxcom.h
-    STDMETHOD(QueryInterface) (THIS_ REFIID riid, void** ppvObj);
-    STDMETHOD_(UINT32,AddRef) (THIS);
-    STDMETHOD_(UINT32,Release) (THIS);
-    
-    // IHXCommonClassFactory methods, ref hxccf.h
-    STDMETHOD(CreateInstance)                   (THIS_ REFCLSID rclsid, void** ppUnknown);
-    STDMETHOD(CreateInstanceAggregatable)       (THIS_
-                                                REFCLSID rclsid,
-                                                REF(IUnknown*) ppUnknown,
-                                                IUnknown* pUnkOuter);
-
-private:
-    LONG32 m_lRefCount;
-    IUnknown *m_pContext;
-};
-
-#include <hxcomptr.h>
-typedef HXCOMPtr<CUTClassFactory> SPCUTClassFactory;
-
-#endif /* _UT_CLFACT_H_ */
+/* ***** BEGIN LICENSE BLOCK *****  
+ * Source last modified: $Id$ 
+ *   
+ * Portions Copyright (c) 1995-2003 RealNetworks, Inc. All Rights Reserved.  
+ *       
+ * The contents of this file, and the files included with this file, 
+ * are subject to the current version of the RealNetworks Public 
+ * Source License (the "RPSL") available at 
+ * http://www.helixcommunity.org/content/rpsl unless you have licensed 
+ * the file under the current version of the RealNetworks Community 
+ * Source License (the "RCSL") available at 
+ * http://www.helixcommunity.org/content/rcsl, in which case the RCSL 
+ * will apply. You may also obtain the license terms directly from 
+ * RealNetworks.  You may not use this file except in compliance with 
+ * the RPSL or, if you have a valid RCSL with RealNetworks applicable 
+ * to this file, the RCSL.  Please see the applicable RPSL or RCSL for 
+ * the rights, obligations and limitations governing use of the 
+ * contents of the file. 
+ *   
+ * This file is part of the Helix DNA Technology. RealNetworks is the 
+ * developer of the Original Code and owns the copyrights in the 
+ * portions it created. 
+ *   
+ * This file, and the files included with this file, is distributed 
+ * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY 
+ * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS 
+ * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES 
+ * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET 
+ * ENJOYMENT OR NON-INFRINGEMENT. 
+ *  
+ * Technology Compatibility Kit Test Suite(s) Location:  
+ *    http://www.helixcommunity.org/content/tck  
+ *  
+ * Contributor(s):  
+ *   
+ * ***** END LICENSE BLOCK ***** */  
+
+#ifndef _UT_CLFACT_H_
+#define _UT_CLFACT_H_
+
+#include "hxccf.h"
+
+/**
+  * \brief      CUTClassFactory - Implement IHXCommonClassFactory for unit testing
+  * 
+  * A simple implementation that provides IHXBuffer, IHXPacket and IHXValues.
+  */
+class CUTClassFactory: public IHXCommonClassFactory
+{
+public:
+    CUTClassFactory(IUnknown *pContext=NULL);
+    ~CUTClassFactory();
+
+    // IUnknown methods, ref hxcom.h
+    STDMETHOD(QueryInterface) (THIS_ REFIID riid, void** ppvObj);
+    STDMETHOD_(UINT32,AddRef) (THIS);
+    STDMETHOD_(UINT32,Release) (THIS);
+    
+    // IHXCommonClassFactory methods, ref hxccf.h
+    STDMETHOD(CreateInstance)                   (THIS_ REFCLSID rclsid, void** ppUnknown);
+    STDMETHOD(CreateInstanceAggregatable)       (THIS_
+                                                REFCLSID rclsid,
+                                                REF(IUnknown*) ppUnknown,
+                                                IUnknown* pUnkOuter);
+
+private:
+    LONG32 m_lRefCount;
+    IUnknown *m_pContext;
+};
+
+#include <hxcomptr.h>
+typedef HXCOMPtr<CUTClassFactory> SPCUTClassFactory;
+
+#endif /* _UT_CLFACT_H_ */


_______________________________________________
Server-cvs mailing list
Server-cvs@helixcommunity.org
http://lists.helixcommunity.org/mailman/listinfo/server-cvs
[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic