summaryrefslogtreecommitdiffstats
path: root/xmlserializer
diff options
context:
space:
mode:
authorSebastien Gonzalve <oznog@zarb.org>2014-02-21 22:37:07 +0100
committerDavid Wagner <david.wagner@intel.com>2014-09-11 14:25:02 +0200
commitffbf43b383bb8693741430b02c24dbc9b127f7f7 (patch)
tree7b4d9d72d456adeb5f5bf470ed78e3c5045ecd25 /xmlserializer
parentf811b7b53c0c2f0d4320c70230e609619c5087c1 (diff)
downloadexternal_parameter-framework-ffbf43b383bb8693741430b02c24dbc9b127f7f7.zip
external_parameter-framework-ffbf43b383bb8693741430b02c24dbc9b127f7f7.tar.gz
external_parameter-framework-ffbf43b383bb8693741430b02c24dbc9b127f7f7.tar.bz2
Remove useless cpp's
Those files are empty or almost empty, put remaining stuff in header if necessary.
Diffstat (limited to 'xmlserializer')
-rw-r--r--xmlserializer/Android.mk1
-rw-r--r--xmlserializer/CMakeLists.txt1
-rw-r--r--xmlserializer/XmlDocSink.cpp44
-rw-r--r--xmlserializer/XmlDocSink.h12
4 files changed, 9 insertions, 49 deletions
diff --git a/xmlserializer/Android.mk b/xmlserializer/Android.mk
index e6b06c1..7109bf9 100644
--- a/xmlserializer/Android.mk
+++ b/xmlserializer/Android.mk
@@ -35,7 +35,6 @@ common_src_files := \
XmlElement.cpp \
XmlSerializingContext.cpp \
XmlDocSource.cpp \
- XmlDocSink.cpp \
XmlMemoryDocSink.cpp \
XmlMemoryDocSource.cpp \
XmlStringDocSink.cpp \
diff --git a/xmlserializer/CMakeLists.txt b/xmlserializer/CMakeLists.txt
index 06f3c68..074bbcc 100644
--- a/xmlserializer/CMakeLists.txt
+++ b/xmlserializer/CMakeLists.txt
@@ -30,7 +30,6 @@ add_library(xmlserializer SHARED
XmlElement.cpp
XmlSerializingContext.cpp
XmlDocSource.cpp
- XmlDocSink.cpp
XmlMemoryDocSink.cpp
XmlMemoryDocSource.cpp
XmlStringDocSink.cpp
diff --git a/xmlserializer/XmlDocSink.cpp b/xmlserializer/XmlDocSink.cpp
deleted file mode 100644
index b54b415..0000000
--- a/xmlserializer/XmlDocSink.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (c) 2011-2014, Intel Corporation
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation and/or
- * other materials provided with the distribution.
- *
- * 3. Neither the name of the copyright holder nor the names of its contributors
- * may be used to endorse or promote products derived from this software without
- * specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
- * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "XmlDocSink.h"
-
-CXmlDocSink::CXmlDocSink()
-{
-}
-
-bool CXmlDocSink::process(CXmlDocSource& xmlDocSource, CXmlSerializingContext& serializingContext)
-{
- if (!xmlDocSource.populate(serializingContext)) {
- return false;
- }
-
- return doProcess(xmlDocSource, serializingContext);
-}
diff --git a/xmlserializer/XmlDocSink.h b/xmlserializer/XmlDocSink.h
index 4868d9a..f7a87b9 100644
--- a/xmlserializer/XmlDocSink.h
+++ b/xmlserializer/XmlDocSink.h
@@ -42,8 +42,6 @@
class CXmlDocSink
{
public:
- CXmlDocSink();
-
/**
* Method to be called to use an xmlDocSource.
* Any subclass of XmlDocSink must implement the doProcess
@@ -54,7 +52,15 @@ public:
*
* @return true is there was no error during the processing of xmlDocSource
*/
- bool process(CXmlDocSource& xmlDocSource, CXmlSerializingContext& serializingContext);
+ bool process(CXmlDocSource& xmlDocSource, CXmlSerializingContext& serializingContext)
+ {
+ if (!xmlDocSource.populate(serializingContext)) {
+ return false;
+ }
+
+ return doProcess(xmlDocSource, serializingContext);
+ }
+
virtual ~CXmlDocSink() {}
private: