You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by jb...@apache.org on 2005/06/04 21:37:06 UTC

svn commit: r180015 - /xerces/c/trunk/src/xercesc/util/XMLHolder.c /xerces/c/trunk/src/xercesc/util/XMLHolder.hpp

Author: jberry
Date: Sat Jun  4 12:37:04 2005
New Revision: 180015

URL: http://svn.apache.org/viewcvs?rev=180015&view=rev
Log:
Set svn keywords and eol-style properties on XMLHolder, and modify newlines to native style

Modified:
    xerces/c/trunk/src/xercesc/util/XMLHolder.c   (contents, props changed)
    xerces/c/trunk/src/xercesc/util/XMLHolder.hpp   (contents, props changed)

Modified: xerces/c/trunk/src/xercesc/util/XMLHolder.c
URL: http://svn.apache.org/viewcvs/xerces/c/trunk/src/xercesc/util/XMLHolder.c?rev=180015&r1=180014&r2=180015&view=diff
==============================================================================
--- xerces/c/trunk/src/xercesc/util/XMLHolder.c (original)
+++ xerces/c/trunk/src/xercesc/util/XMLHolder.c Sat Jun  4 12:37:04 2005
@@ -1,52 +1,52 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-// ---------------------------------------------------------------------------
-//  Include
-// ---------------------------------------------------------------------------
-#if defined(XERCES_TMPLSINC)
-#include <xercesc/util/XMLHolder.hpp>
-#endif
-
-XERCES_CPP_NAMESPACE_BEGIN
-
-
-// -----------------------------------------------------------------------
-// XMLHolder:  Constructors and Destructor
-// -----------------------------------------------------------------------
-
-template<class Type>
-XMLHolder<Type>::XMLHolder() :
-    XMemory(),
-    fInstance()
-{
-}
-
-template<class Type>
-XMLHolder<Type>::~XMLHolder()
-{
-}
-
-
-template<class Type>
-XMLHolder<Type>*
-XMLHolder<Type>::castTo(void* handle)
-{
-    return (XMLHolder<Type>*)handle;
-}
-
-
-XERCES_CPP_NAMESPACE_END
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+// ---------------------------------------------------------------------------
+//  Include
+// ---------------------------------------------------------------------------
+#if defined(XERCES_TMPLSINC)
+#include <xercesc/util/XMLHolder.hpp>
+#endif
+
+XERCES_CPP_NAMESPACE_BEGIN
+
+
+// -----------------------------------------------------------------------
+// XMLHolder:  Constructors and Destructor
+// -----------------------------------------------------------------------
+
+template<class Type>
+XMLHolder<Type>::XMLHolder() :
+    XMemory(),
+    fInstance()
+{
+}
+
+template<class Type>
+XMLHolder<Type>::~XMLHolder()
+{
+}
+
+
+template<class Type>
+XMLHolder<Type>*
+XMLHolder<Type>::castTo(void* handle)
+{
+    return (XMLHolder<Type>*)handle;
+}
+
+
+XERCES_CPP_NAMESPACE_END

Propchange: xerces/c/trunk/src/xercesc/util/XMLHolder.c
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/trunk/src/xercesc/util/XMLHolder.c
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Modified: xerces/c/trunk/src/xercesc/util/XMLHolder.hpp
URL: http://svn.apache.org/viewcvs/xerces/c/trunk/src/xercesc/util/XMLHolder.hpp?rev=180015&r1=180014&r2=180015&view=diff
==============================================================================
--- xerces/c/trunk/src/xercesc/util/XMLHolder.hpp (original)
+++ xerces/c/trunk/src/xercesc/util/XMLHolder.hpp Sat Jun  4 12:37:04 2005
@@ -1,56 +1,56 @@
-/*
- * Copyright 1999-2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * 
- *      http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#if !defined(XMLHOLDER_HPP)
-#define XMLHOLDER_HPP
-
-#include <xercesc/util/XMemory.hpp>
-
-XERCES_CPP_NAMESPACE_BEGIN
-
-template<class Type>
-class XMLUTIL_EXPORT XMLHolder : public XMemory
-{
-public :
-    // -----------------------------------------------------------------------
-    //  Constructors and Destructor
-    // -----------------------------------------------------------------------
-    XMLHolder();
-
-    ~XMLHolder();
-
-    Type    fInstance;
-
-    static XMLHolder<Type>*
-    castTo(void* handle);
-
-private :
-    // -----------------------------------------------------------------------
-    //  Unimplemented constructors and operators
-    // -----------------------------------------------------------------------
-    XMLHolder(const XMLHolder<Type>&);
-    XMLHolder<Type>& operator=(const XMLHolder<Type>&);
-
-};
-
-XERCES_CPP_NAMESPACE_END
-
-#if !defined(XERCES_TMPLSINC)
-#include <xercesc/util/XMLHolder.c>
-#endif
-
-
-#endif
+/*
+ * Copyright 1999-2005 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#if !defined(XMLHOLDER_HPP)
+#define XMLHOLDER_HPP
+
+#include <xercesc/util/XMemory.hpp>
+
+XERCES_CPP_NAMESPACE_BEGIN
+
+template<class Type>
+class XMLUTIL_EXPORT XMLHolder : public XMemory
+{
+public :
+    // -----------------------------------------------------------------------
+    //  Constructors and Destructor
+    // -----------------------------------------------------------------------
+    XMLHolder();
+
+    ~XMLHolder();
+
+    Type    fInstance;
+
+    static XMLHolder<Type>*
+    castTo(void* handle);
+
+private :
+    // -----------------------------------------------------------------------
+    //  Unimplemented constructors and operators
+    // -----------------------------------------------------------------------
+    XMLHolder(const XMLHolder<Type>&);
+    XMLHolder<Type>& operator=(const XMLHolder<Type>&);
+
+};
+
+XERCES_CPP_NAMESPACE_END
+
+#if !defined(XERCES_TMPLSINC)
+#include <xercesc/util/XMLHolder.c>
+#endif
+
+
+#endif

Propchange: xerces/c/trunk/src/xercesc/util/XMLHolder.hpp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xerces/c/trunk/src/xercesc/util/XMLHolder.hpp
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org