summaryrefslogtreecommitdiffstats
path: root/test/test-subsystem/TESTSubsystem.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/test-subsystem/TESTSubsystem.h')
-rw-r--r--test/test-subsystem/TESTSubsystem.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/test-subsystem/TESTSubsystem.h b/test/test-subsystem/TESTSubsystem.h
index bcd0fbd..0546e94 100644
--- a/test/test-subsystem/TESTSubsystem.h
+++ b/test/test-subsystem/TESTSubsystem.h
@@ -34,16 +34,16 @@
class CTESTSubsystem : public CSubsystem
{
public:
- CTESTSubsystem(const std::string& strName);
+ CTESTSubsystem(const std::string &strName, core::log::Logger &logger);
- // Susbsystem sanity
- virtual bool isAlive() const;
- // Resynchronization after subsystem restart needed
- virtual bool needResync(bool bClear);
+ // Susbsystem sanity
+ virtual bool isAlive() const;
+ // Resynchronization after subsystem restart needed
+ virtual bool needResync(bool bClear);
private:
// Read boolean from file
- static std::string read(const std::string& strFileName);
+ static std::string read(const std::string &strFileName);
// Write boolean to file
- static void write(const std::string& strFileName, const std::string& strContent);
+ static void write(const std::string &strFileName, const std::string &strContent);
};