Changes between Initial Version and Version 1 of Ticket #1780, comment 1


Ignore:
Timestamp:
08/26/21 07:46:23 (3 years ago)
Author:
Shawn Rutledge
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1780, comment 1

    initial v1  
    1212
    1313(raspbian still has chicken 4, so I was able to reproduce this on a raspberry pi)
     14
     15Maybe you have valid arguments for why private slots are a bad idea though.  Data hiding is a classic-OO trope, but perhaps not such a good fit in functional style.  My first reaction to C++ when  I learned it about 27 years ago was I thought that it's rather paranoid if you distrust your fellow programmers so much that you need to hide data from them.  OTOH there's something to the idea of decluttering the public API.  So I was using the keyword/symbol distinction tentatively as a workaround to hide a few things.  Apparently I have to stop doing that now.