/[projects]/smsdaemon/plugins/StatusPlugin.cpp
ViewVC logotype

Diff of /smsdaemon/plugins/StatusPlugin.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 102 by torben, Tue Jun 17 06:29:19 2008 UTC revision 196 by torben, Thu Dec 18 06:53:29 2008 UTC
# Line 1  Line 1 
1  #include "StatusPlugin.h"  #include "StatusPlugin.h"
2  #include "IGsmModem.h"  #include "ISmsTransceiver.h"
3  #include "Sms.h"  #include "Sms.h"
4    
5  #include <sstream>  #include <sstream>
6  #include "version.h"  #include "version.h"
7    
8  #include "common.h"  #include "Common.h"
9    
10  StatusPlugin::StatusPlugin()  StatusPlugin::StatusPlugin()
11    : Plugin("status", "Returns a status of the smsdaemon")                  : Plugin("status", "Returns a status of the smsdaemon")
12  {  {
13    
14  }  }
15    
16  void StatusPlugin::Execute(IGsmModem& modem, SMS& sms)  void StatusPlugin::Execute(ISmsTransceiver& modem, SMS& sms)
17  {  {
18          Common* cmn = Common::instance();          Common* cmn = Common::instance();
19    
# Line 34  void StatusPlugin::Execute(IGsmModem& mo Line 34  void StatusPlugin::Execute(IGsmModem& mo
34          os << "Uptime: " << days << "d, " << hour << ":" << min << ":" << sec;          os << "Uptime: " << days << "d, " << hour << ":" << min << ":" << sec;
35    
36    
37          modem.SendSms(sms.sender, os.str(), true );          modem.SendSms(sms.GetSender(), os.str(), true );
38    
39  }  }

Legend:
Removed from v.102  
changed lines
  Added in v.196

  ViewVC Help
Powered by ViewVC 1.1.20