00001
00002
00003
00004
00005
00007
00008 #ifndef _ROKU_INCLUDE_CASCADE_NET_CASCADESNTPDAEMON_H
00009 #define _ROKU_INCLUDE_CASCADE_NET_CASCADESNTPDAEMON_H
00010
00011 class CascadeSNTPDaemon
00012 {
00013 public:
00014 static bool Start();
00015 static bool Stop();
00016 static void GetSNTPServer(CascadeString & serverToSet);
00017 static void SetSNTPServer(const CascadeString & server, bool bRefetch = false);
00018 static void ResetSNTPServerToDefault(bool bRefetch = false);
00019 private:
00020 class Daemon;
00021 };
00022
00023
00024 #endif // #ifndef _ROKU_INCLUDE_CASCADE_NET_CASCADESNTPDAEMON_H
00025
00027
00029
00030