<feed xmlns='http://www.w3.org/2005/Atom'>
<title>platform_external_parameter-framework/skeleton-subsystem, branch marshmallow-mr1-dev</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_parameter-framework/'/>
<entry>
<title>Missing std prefix in skeleton plugin</title>
<updated>2015-02-06T10:31:28+00:00</updated>
<author>
<name>Kevin Rocard</name>
<email>kevin.rocard@intel.com</email>
</author>
<published>2015-02-06T10:24:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_parameter-framework/commit/?id=67c8584aa02c92135f84785fa446f2d0acab3224'/>
<id>67c8584aa02c92135f84785fa446f2d0acab3224</id>
<content type='text'>
The skeleton plugin is not compiled when compiling
the root pfw project. As a result, when `using namespaces`
was removed from the pfw headers the skeleton plugin
was left unchecked and unfortunately broken.

Fix the missing `std::` by adding them where needed or
inserting a `using std::string`.

Signed-off-by: Kevin Rocard &lt;kevin.rocard@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The skeleton plugin is not compiled when compiling
the root pfw project. As a result, when `using namespaces`
was removed from the pfw headers the skeleton plugin
was left unchecked and unfortunately broken.

Fix the missing `std::` by adding them where needed or
inserting a `using std::string`.

Signed-off-by: Kevin Rocard &lt;kevin.rocard@intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove using std::XXX from headers</title>
<updated>2014-09-11T12:25:02+00:00</updated>
<author>
<name>Sebastien Gonzalve</name>
<email>oznog@zarb.org</email>
</author>
<published>2014-02-20T21:28:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_parameter-framework/commit/?id=d9526499d6ab53b7d13d1434f748f6f2161c2e0a'/>
<id>d9526499d6ab53b7d13d1434f748f6f2161c2e0a</id>
<content type='text'>
This is a bad practice to have using in headers because it pollutes the
namespace of any user of that header.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a bad practice to have using in headers because it pollutes the
namespace of any user of that header.
</pre>
</div>
</content>
</entry>
<entry>
<title>More README files</title>
<updated>2014-09-10T10:04:36+00:00</updated>
<author>
<name>David Wagner</name>
<email>david.wagner@intel.com</email>
</author>
<published>2014-03-06T13:58:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_parameter-framework/commit/?id=f811b7b53c0c2f0d4320c70230e609619c5087c1'/>
<id>f811b7b53c0c2f0d4320c70230e609619c5087c1</id>
<content type='text'>
- More details in the root README.md file; add a nice diagram
- Add a lot of README files in subdirectories

Signed-off-by: David Wagner &lt;david.wagner@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- More details in the root README.md file; add a nice diagram
- Add a lot of README files in subdirectories

Signed-off-by: David Wagner &lt;david.wagner@intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add 3-clause BSD license to CMake makefiles.</title>
<updated>2014-06-30T06:45:57+00:00</updated>
<author>
<name>Mattijs Korpershoek</name>
<email>mattijsx.korpershoek@intel.com</email>
</author>
<published>2014-06-27T09:27:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_parameter-framework/commit/?id=f2a6d24795485839aa481f4c1d57812701e50e4b'/>
<id>f2a6d24795485839aa481f4c1d57812701e50e4b</id>
<content type='text'>
BZ: 207083

License headers were missing in CMake makefiles.

This patch adds the 3-clause BSD license header to each CMakeLists.txt.

Change-Id: Ia4da92e139e02d6348d655d0d88a16166d8431ca
Signed-off-by: Mattijs Korpershoek &lt;mattijsx.korpershoek@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BZ: 207083

License headers were missing in CMake makefiles.

This patch adds the 3-clause BSD license header to each CMakeLists.txt.

Change-Id: Ia4da92e139e02d6348d655d0d88a16166d8431ca
Signed-off-by: Mattijs Korpershoek &lt;mattijsx.korpershoek@intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Added comments for new plugin developers</title>
<updated>2014-03-21T08:17:23+00:00</updated>
<author>
<name>Mattijs Korpershoek</name>
<email>mattijs.korpershoek@gmail.com</email>
</author>
<published>2014-03-21T08:05:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_parameter-framework/commit/?id=53d7efcfb7b2e04225502100a18f9c923370c26e'/>
<id>53d7efcfb7b2e04225502100a18f9c923370c26e</id>
<content type='text'>
As a new pfw plugin developer, i encountered an undocumented
(in the plugin) naming issue related to how the pfw
loads subsystem builders.

This patchs just added a comment to inform other
developers not to make the same mistake
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As a new pfw plugin developer, i encountered an undocumented
(in the plugin) naming issue related to how the pfw
loads subsystem builders.

This patchs just added a comment to inform other
developers not to make the same mistake
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed SubsystemBuilder function in Skeleton plugin</title>
<updated>2014-03-21T08:17:23+00:00</updated>
<author>
<name>Mattijs Korpershoek</name>
<email>mattijs.korpershoek@gmail.com</email>
</author>
<published>2014-03-20T15:30:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_parameter-framework/commit/?id=ab793c78e50d07f4fd05714c4502eb2ef8138b71'/>
<id>ab793c78e50d07f4fd05714c4502eb2ef8138b71</id>
<content type='text'>
The system class convention needs the get&lt;TYPE&gt;SubsystemBuilder
function to have type in caps lock, otherwise the
pfw will loop infinitely when attempting to load plugin.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The system class convention needs the get&lt;TYPE&gt;SubsystemBuilder
function to have type in caps lock, otherwise the
pfw will loop infinitely when attempting to load plugin.
</pre>
</div>
</content>
</entry>
<entry>
<title>Added CmakeLists.txt for building the plugin</title>
<updated>2014-03-21T08:17:23+00:00</updated>
<author>
<name>Mattijs Korpershoek</name>
<email>mattijs.korpershoek@gmail.com</email>
</author>
<published>2014-03-20T10:46:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_parameter-framework/commit/?id=6f7fde797222b43993d4ce5e97ffce45c6b672b2'/>
<id>6f7fde797222b43993d4ce5e97ffce45c6b672b2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a example skeleton plugin</title>
<updated>2014-02-27T17:34:02+00:00</updated>
<author>
<name>Kevin Rocard</name>
<email>kevinx.rocard@intel.com</email>
</author>
<published>2013-01-28T16:07:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_parameter-framework/commit/?id=ad12cb6f1d4ac9f2c24171567f935693db211bd6'/>
<id>ad12cb6f1d4ac9f2c24171567f935693db211bd6</id>
<content type='text'>
Change-Id: I16c4e9c90395648dc3d583687c97f4b72401be8b
Signed-off-by: Kevin Rocard &lt;kevinx.rocard@intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I16c4e9c90395648dc3d583687c97f4b72401be8b
Signed-off-by: Kevin Rocard &lt;kevinx.rocard@intel.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
