telldus/telldus-core/service
2017-06-28 15:46:32 +02:00
..
osx Updated ftd2xx library and updated the header files 2011-02-22 15:01:04 +00:00
win Convert dos endings to unix in telldus-core, see #160 2012-02-27 17:37:52 +01:00
ClientCommunicationHandler.cpp If an else has a brace on one side, it should have it on both according to Google style guidelines "readability/braces" 2012-06-19 12:30:52 +02:00
ClientCommunicationHandler.h { should almost always be at the end of the previous line, according to Google style guidelines "whitespace/braces" 2012-06-19 12:30:50 +02:00
CMakeLists.txt Fixed telldus-core segfault because of config file path not set in correct order 2013-09-12 11:54:16 +02:00
com.telldus.service.plist Add file com.telldus.service.plist to describe and start our service on Mac OS X 2011-09-09 14:19:39 +00:00
config.h.in Make the path for the scripts configurable 2012-11-22 13:10:10 +01:00
ConnectionListener.h Fix #ifndef header guard style, according to Google style guidelines 2012-06-19 12:30:50 +02:00
ConnectionListener_unix.cpp Convert spaces to tabs. 2013-02-13 17:54:43 +01:00
ConnectionListener_win.cpp Added whitespaces to comments according to Google style guidelines "whitespace/comments" 2012-12-05 13:01:46 +01:00
Controller.cpp Code cleanup, removed debug messages 2012-12-06 16:12:42 +01:00
Controller.h Fix include header order according to Google style guidelines "build/include_order" 2012-06-19 12:30:50 +02:00
ControllerListener.h Single-argument constructors should be marked explicit. According to 2012-06-19 12:30:50 +02:00
ControllerListener_mac.cpp Remove empty lines according to google style guidelines 2012-11-08 15:40:31 +01:00
ControllerManager.cpp Add function ControllerManager::count() 2012-11-02 13:34:34 +01:00
ControllerManager.h Add function ControllerManager::count() 2012-11-02 13:34:34 +01:00
ControllerMessage.cpp Rename ControllerMessage::getIntParameter() to ControllerMessage::getInt64Parameter() 2012-06-19 16:47:01 +02:00
ControllerMessage.h Fixed regression errors for windows 2012-12-04 15:14:40 +01:00
Device.cpp Add function Device::isMethodSupported() 2012-11-02 16:18:27 +01:00
Device.h Add function Device::isMethodSupported() 2012-11-02 16:18:27 +01:00
DeviceManager.cpp Added support for rain and wind sensors (Oregon Scientific) in telldus-core 2013-09-02 16:28:39 +02:00
DeviceManager.h Queue all device commands and execute them from the main thread. 2012-11-02 19:52:07 +01:00
EventUpdateManager.cpp Small fix that might or might not fix "EFAULT (bad address)"-errors when executing scripts on events 2014-03-06 14:13:29 +01:00
EventUpdateManager.h Preload all scripts to execute on startup to avoid scanning the 2012-11-22 13:10:10 +01:00
ftd2xx.h Convert dos endings to unix in telldus-core, see #160 2012-02-27 17:37:52 +01:00
Log.cpp Use C++ casting instead of C casting according to Google style guidelines 2012-12-05 14:28:29 +01:00
Log.h Fix #ifndef header guard style, according to Google style guidelines 2012-06-19 12:30:50 +02:00
main_mac.cpp Update main_mac.cpp to our style guidelines 2012-09-26 16:32:36 +02:00
main_unix.cpp Do not log SIGPIPE. This is a normal signal when a client disconnects. 2013-02-13 17:29:26 +01:00
main_win.cpp Use tabs for indentation according to Google style guidelines "whitespace/usr_tab_for_indentation" 2012-12-05 13:01:52 +01:00
Messages.mc Implement logging using Windows Event Log, see #103 2011-12-28 15:35:15 +01:00
Protocol.cpp Added hasta version 2 2013-05-08 13:44:25 +02:00
Protocol.h Protocol::getStringParameter() and Protocol::getIntParameter() should be virtual so they can be overriden by a protocol 2012-06-20 17:14:10 +02:00
ProtocolBrateck.cpp Should have spaces after comma according to Google style guidelines "whitespace/comma" 2012-06-19 12:30:51 +02:00
ProtocolBrateck.h { should almost always be at the end of the previous line, according to Google style guidelines "whitespace/braces" 2012-06-19 12:30:50 +02:00
ProtocolComen.cpp Implement protocol Comen by hardcoding the last to bits in the housecode 2012-06-20 17:15:26 +02:00
ProtocolComen.h Implement protocol Comen by hardcoding the last to bits in the housecode 2012-06-20 17:15:26 +02:00
ProtocolEverflourish.cpp Comparison of unsigned expression < 0 is always false 2012-10-30 15:58:01 +01:00
ProtocolEverflourish.h Use pointers when passing references according to Google style guidelines "runtime/references" 2012-06-19 12:30:52 +02:00
ProtocolFineoffset.cpp Fix some compiler warnings 2012-10-30 15:58:34 +01:00
ProtocolFineoffset.h Use pointers when passing references according to Google style guidelines "runtime/references" 2012-06-19 12:30:52 +02:00
ProtocolFuhaote.cpp Remove extra blank lines according to Google style guidelines "whitespace/blank_line" 2012-06-19 12:30:51 +02:00
ProtocolFuhaote.h { should almost always be at the end of the previous line, according to Google style guidelines "whitespace/braces" 2012-06-19 12:30:50 +02:00
ProtocolGroup.cpp Add #include <string> for string, according to Google style guidelines "build/include_what_you_use" 2012-06-19 12:30:50 +02:00
ProtocolGroup.h Remove extra blank lines according to Google style guidelines "whitespace/blank_line" 2012-06-19 12:30:51 +02:00
ProtocolHasta.cpp Changed casting, according to Google style guidelines "readability/casting" 2013-05-16 16:29:57 +02:00
ProtocolHasta.h Added hasta version 2 2013-05-08 13:44:25 +02:00
ProtocolIkea.cpp Specifying chars as unsigned where needed 2017-06-28 15:46:32 +02:00
ProtocolIkea.h { should almost always be at the end of the previous line, according to Google style guidelines "whitespace/braces" 2012-06-19 12:30:50 +02:00
ProtocolMandolyn.cpp Fix some compiler warnings 2012-10-30 15:58:34 +01:00
ProtocolMandolyn.h Use pointers when passing references according to Google style guidelines "runtime/references" 2012-06-19 12:30:52 +02:00
ProtocolNexa.cpp Comparison of unsigned expression < 0 is always false 2012-10-30 15:58:01 +01:00
ProtocolNexa.h Fixed regression errors for windows 2012-12-04 15:14:40 +01:00
ProtocolOregon.cpp Added support for Oregon Scientific C844 (pool thermometer) 2014-01-13 14:39:15 +01:00
ProtocolOregon.h Added support for Oregon Scientific C844 (pool thermometer) 2014-01-13 14:39:15 +01:00
ProtocolRisingSun.cpp Remove extra blank lines according to Google style guidelines "whitespace/blank_line" 2012-06-19 12:30:51 +02:00
ProtocolRisingSun.h { should almost always be at the end of the previous line, according to Google style guidelines "whitespace/braces" 2012-06-19 12:30:50 +02:00
ProtocolSartano.cpp Fixed regression errors for windows 2012-12-04 15:14:40 +01:00
ProtocolSartano.h Use pointers when passing references according to Google style guidelines "runtime/references" 2012-06-19 12:30:52 +02:00
ProtocolScene.cpp Add #include <string> for string, according to Google style guidelines "build/include_what_you_use" 2012-06-19 12:30:50 +02:00
ProtocolScene.h Remove extra blank lines according to Google style guidelines "whitespace/blank_line" 2012-06-19 12:30:51 +02:00
ProtocolSilvanChip.cpp Remove extra blank lines according to Google style guidelines "whitespace/blank_line" 2012-06-19 12:30:51 +02:00
ProtocolSilvanChip.h { should almost always be at the end of the previous line, according to Google style guidelines "whitespace/braces" 2012-06-19 12:30:50 +02:00
ProtocolUpm.cpp Should have a space between // and comment "whitespace/comments" 2012-06-19 12:30:50 +02:00
ProtocolUpm.h { should almost always be at the end of the previous line, according to Google style guidelines "whitespace/braces" 2012-06-19 12:30:50 +02:00
ProtocolWaveman.cpp Fixed regression errors for windows 2012-12-04 15:14:40 +01:00
ProtocolWaveman.h Use pointers when passing references according to Google style guidelines "runtime/references" 2012-06-19 12:30:52 +02:00
ProtocolX10.cpp Specifying chars as unsigned where needed 2017-06-28 15:46:32 +02:00
ProtocolX10.h Use pointers when passing references according to Google style guidelines "runtime/references" 2012-06-19 12:30:52 +02:00
ProtocolYidong.cpp Add #include <string> for string, according to Google style guidelines "build/include_what_you_use" 2012-06-19 12:30:50 +02:00
ProtocolYidong.h { should almost always be at the end of the previous line, according to Google style guidelines "whitespace/braces" 2012-06-19 12:30:50 +02:00
Sensor.cpp Should have spaces after comma according to Google style guidelines "whitespace/comma" 2012-06-19 12:30:51 +02:00
Sensor.h Fix include header order according to Google style guidelines "build/include_order" 2012-06-19 12:30:50 +02:00
Settings.cpp Fix some compiler warnings 2012-10-30 15:58:34 +01:00
Settings.h Fix #ifndef header guard style, according to Google style guidelines 2012-06-19 12:30:50 +02:00
SettingsConfuse.cpp Fixed telldus-core segfault because of config file path not set in correct order 2013-09-12 11:54:16 +02:00
SettingsCoreFoundationPreferences.cpp Cleanup our CF variables so we do not leak memory. See #240 2012-11-08 10:49:04 +01:00
SettingsWinRegistry.cpp Use Windows type LONG instead of long to follow the API better 2012-12-05 13:58:06 +01:00
telldus-core.conf The configuration files should be handled by the service, not the client 2010-11-11 11:14:18 +00:00
TelldusMain.cpp We should of course skip it on OS X and run it on all other platforms. See #245 2013-02-20 15:46:11 +01:00
TelldusMain.h Should have a space between // and comment "whitespace/comments" 2012-06-19 12:30:50 +02:00
TelldusWinService_win.cpp We need this on one line so the style guidelines check will detect it is a struct 2012-12-05 14:07:18 +01:00
TelldusWinService_win.h Removed blank lines at start/end of code blocks according to Google style guidelines "whitespace/blank_line" 2012-12-05 13:02:06 +01:00
tellstick.conf Added setting for 'Not wait for confirmation from TellStick', see ticket 98, in Linux 2012-01-11 14:53:46 +01:00
TellStick.cpp Should have spaces after comma according to Google style guidelines "whitespace/comma" 2012-06-19 12:30:51 +02:00
TellStick.h Add #include <string> for string, according to Google style guidelines "build/include_what_you_use" 2012-06-19 12:30:50 +02:00
TellStick_ftd2xx.cpp Do not unlock the mutex manually since we are using a MutexLocker. 2012-11-02 13:16:34 +01:00
TellStick_libftdi.cpp Use C++ casting instead of C casting according to Google style guidelines "readability/casting" 2012-06-19 12:30:52 +02:00
Timer.cpp Remove variables never used 2012-11-08 10:13:59 +01:00
Timer.h Single-argument constructors should be marked explicit. According to 2012-06-19 12:30:50 +02:00