Line 860: |
Line 860: |
| } | | } |
| | | |
− | So this is a little factory that makes a Plugin object that can interact with the rest of the alsa audio framewrk. | + | So this is a little factory that makes a Plugin object that can interact with the rest of the alsa audio framework. |
| + | |
| + | So what's the rest of it... |
| + | |
| + | Two sections |
| + | # protected: |
| + | # private: |
| + | |
| + | |
| + | Protected: |
| + | Members declared as protected are accessible within the same class and in derived classes |
| + | |
| + | Private: |
| + | Members declared as private are accessible only within the same class. |
| + | They cannot be accessed by derived classes, objects of the class, or external code. |
| + | Used to encapsulate data and hide implementation details. |
| | | |
| =====makefile===== | | =====makefile===== |