This repository was archived by the owner on Aug 5, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,11 @@ before_install:
99 - sudo apt-get install -y swig
1010
1111# how to build
12- script : cmake . && make -j && sudo make install && make test
12+ script :
13+ - cmake . && make -j && sudo make install
14+ - make test
15+ - cd skeleton-subsystem
16+ - cmake . && make && sudo make install
1317
1418notifications :
1519 email :
Original file line number Diff line number Diff line change 3434class CSkeletonSubsystem : public CSubsystem
3535{
3636public:
37- CSkeletonSubsystem (const string& strName);
37+ CSkeletonSubsystem (const std:: string& strName);
3838
3939};
4040
Original file line number Diff line number Diff line change 4343
4444#define base CFormattedSubsystemObject
4545
46+ using std::string;
47+
4648CSkeletonSubsystemObject::CSkeletonSubsystemObject (
4749 const string& strMappingValue,
4850 CInstanceConfigurableElement* pInstanceConfigurableElement,
@@ -105,7 +107,7 @@ bool CSkeletonSubsystemObject::sendToHW(string& strError)
105107 blackboardRead (pvValue, _uiScalarSize);
106108
107109 // Send here the value
108- cout << " Sending to HW: " << _strMessage << endl;
110+ std:: cout << " Sending to HW: " << _strMessage << std:: endl;
109111 }
110112
111113 return true ;
@@ -122,7 +124,7 @@ bool CSkeletonSubsystemObject::receiveFromHW(string& strError)
122124 for (uiIndex = 0 ; uiIndex < _uiArraySize ; uiIndex++) {
123125
124126 // Retreive here the value
125- cout << " Retreive from HW: " << _strMessage << endl;
127+ std:: cout << " Retreive from HW: " << _strMessage << std:: endl;
126128
127129 // Write Value in Blackboard
128130 blackboardWrite (pvValue, _uiScalarSize);
You can’t perform that action at this time.
0 commit comments