summaryrefslogtreecommitdiffstats
path: root/skeleton-subsystem
Commit message (Collapse)AuthorAgeFilesLines
* Missing std prefix in skeleton pluginKevin Rocard2015-02-062-3/+5
| | | | | | | | | | | | 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 <kevin.rocard@intel.com>
* Remove using std::XXX from headersSebastien Gonzalve2014-09-112-6/+6
| | | | | This is a bad practice to have using in headers because it pollutes the namespace of any user of that header.
* More README filesDavid Wagner2014-09-101-3/+4
| | | | | | | - 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 <david.wagner@intel.com>
* Add 3-clause BSD license to CMake makefiles.Mattijs Korpershoek2014-06-301-0/+28
| | | | | | | | | | | 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 <mattijsx.korpershoek@intel.com>
* Added comments for new plugin developersMattijs Korpershoek2014-03-211-0/+9
| | | | | | | | | 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
* Fixed SubsystemBuilder function in Skeleton pluginMattijs Korpershoek2014-03-211-1/+1
| | | | | | The system class convention needs the get<TYPE>SubsystemBuilder function to have type in caps lock, otherwise the pfw will loop infinitely when attempting to load plugin.
* Added CmakeLists.txt for building the pluginMattijs Korpershoek2014-03-211-0/+31
|
* Add a example skeleton pluginKevin Rocard2014-02-277-0/+369
Change-Id: I16c4e9c90395648dc3d583687c97f4b72401be8b Signed-off-by: Kevin Rocard <kevinx.rocard@intel.com>