telldus/telldus-core/service
2012-06-20 17:15:26 +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 Configure SettingsConfusePaths.h in the correct section in CMakeLists.txt 2012-06-20 12:22:03 +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
ConnectionListener.h Fix #ifndef header guard style, according to Google style guidelines 2012-06-19 12:30:50 +02:00
ConnectionListener_unix.cpp Remove extra blank lines according to Google style guidelines "whitespace/blank_line" 2012-06-19 12:30:51 +02:00
ConnectionListener_win.cpp Convert dos endings to unix in telldus-core, see #160 2012-02-27 17:37:52 +01:00
Controller.cpp Remove extra blank lines according to Google style guidelines "whitespace/blank_line" 2012-06-19 12:30:51 +02: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 Race-fix for OSX ControllerListener. 2012-04-09 21:28:39 +02:00
ControllerManager.cpp Missing username in TODO according to Google style guidelines "readability/todo" 2012-06-19 12:30:52 +02:00
ControllerManager.h Fix include header order according to Google style guidelines "build/include_order" 2012-06-19 12:30:50 +02:00
ControllerMessage.cpp Rename ControllerMessage::getIntParameter() to ControllerMessage::getInt64Parameter() 2012-06-19 16:47:01 +02:00
ControllerMessage.h Rename ControllerMessage::getIntParameter() to ControllerMessage::getInt64Parameter() 2012-06-19 16:47:01 +02:00
Device.cpp We need spaces surrounding operators according to Google style guidelines "whitespace/operators" 2012-06-19 12:30:51 +02:00
Device.h Fix include header order according to Google style guidelines "build/include_order" 2012-06-19 12:30:50 +02:00
DeviceManager.cpp Rename ControllerMessage::getIntParameter() to ControllerMessage::getInt64Parameter() 2012-06-19 16:47:01 +02:00
DeviceManager.h Use pointers when passing references according to Google style guidelines "runtime/references" 2012-06-19 12:30:52 +02:00
EventUpdateManager.cpp Use dynamic_cast instead of reinterpret_cast for our events 2012-06-19 16:49:26 +02:00
EventUpdateManager.h Should have a space between // and comment "whitespace/comments" 2012-06-19 12:30:50 +02:00
ftd2xx.h Convert dos endings to unix in telldus-core, see #160 2012-02-27 17:37:52 +01:00
Log.cpp Since we use tabs for indentation, convert to one line instead 2012-06-19 12:30:52 +02:00
Log.h Fix #ifndef header guard style, according to Google style guidelines 2012-06-19 12:30:50 +02:00
main_mac.cpp Log connect and disconnect from a TellStick. This closes #103 2011-12-28 17:28:30 +01:00
main_unix.cpp Add exception for using getgwnam() and getpwnam(). This is safe so early in the startup 2012-06-19 14:40:00 +02:00
main_win.cpp Convert dos endings to unix in telldus-core, see #160 2012-02-27 17:37:52 +01:00
Messages.mc Implement logging using Windows Event Log, see #103 2011-12-28 15:35:15 +01:00
Protocol.cpp Use pointers when passing references according to Google style guidelines "runtime/references" 2012-06-19 12:30:52 +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 Remove sscanf() from ProtocolEverflourish and add a unittest for ProtocolEverflourish::decodeData() 2012-06-20 15:21:29 +02: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 Use C++ casting instead of C casting according to Google style guidelines "readability/casting" 2012-06-19 12:30:52 +02: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 Use pointers when passing references according to Google style guidelines "runtime/references" 2012-06-19 12:30:52 +02:00
ProtocolHasta.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
ProtocolIkea.cpp Convert strcpy to snprintf. This is better according to Google style guidelines "runtime/printf" 2012-06-19 16:18:44 +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 Use C++ casting instead of C casting according to Google style guidelines "readability/casting" 2012-06-19 12:30:52 +02: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 Convert sscanf in ProtocolNexa and ProtocolWaveman to a faster and platform independent implementation 2012-06-19 16:48:44 +02:00
ProtocolNexa.h Convert sscanf in ProtocolNexa and ProtocolWaveman to a faster and platform independent implementation 2012-06-19 16:48:44 +02:00
ProtocolOregon.cpp Missing username in TODO according to Google style guidelines "readability/todo" 2012-06-19 12:30:52 +02:00
ProtocolOregon.h Use pointers when passing references according to Google style guidelines "runtime/references" 2012-06-19 12:30:52 +02: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 Remove sscanf() from ProtocolSartano and add a unittest for ProtocolSartano::decodeData() 2012-06-20 15:22:10 +02: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 Convert sscanf in ProtocolNexa and ProtocolWaveman to a faster and platform independent implementation 2012-06-19 16:48:44 +02: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 Remove sscanf() from ProtocolX10 and add a unittest for ProtocolX10::decodeData() 2012-06-20 14:18:29 +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 { 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
Settings.h Fix #ifndef header guard style, according to Google style guidelines 2012-06-19 12:30:50 +02:00
SettingsConfuse.cpp Bugfix, all the parameters for a device tried to be saved as non parameters 2012-06-20 17:12:30 +02:00
SettingsConfusePaths.h.in Store configured settings paths in header file 2012-03-13 14:59:44 +01:00
SettingsCoreFoundationPreferences.cpp Update CoreFoundationPreerences settings engine to handle both controllers and devices 2012-02-27 16:46:16 +01:00
SettingsWinRegistry.cpp Convert dos endings to unix in telldus-core, see #160 2012-02-27 17:37:52 +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 Use dynamic_cast instead of reinterpret_cast for our events 2012-06-19 16:49:26 +02:00
TelldusMain.h Should have a space between // and comment "whitespace/comments" 2012-06-19 12:30:50 +02:00
TelldusWinService_win.cpp Convert dos endings to unix in telldus-core, see #160 2012-02-27 17:37:52 +01:00
TelldusWinService_win.h Convert dos endings to unix in telldus-core, see #160 2012-02-27 17:37:52 +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 Convert dos endings to unix in telldus-core, see #160 2012-02-27 17:37:52 +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 Fix include header order according to Google style guidelines "build/include_order" 2012-06-19 12:30:50 +02:00
Timer.h Single-argument constructors should be marked explicit. According to 2012-06-19 12:30:50 +02:00