Single Responsibility Principle
I'd rather go with that single responsibility is when "a class performs on the same set of data".
I find SRP difficult. I do use "a class performs on the same set of data" as an indication of the number of responsibilities a class has.
You can't always look at a class in isolation and determine how many responsibilities it has, because the number of responsibilities is often dependent on how the class is used by its clients.
It's a good idea to look at the clients that are using your class and to see how much of the class each client is using, and how they are using it. This may give you an idea of the responsibilities that the clients see the class as having.
Remember also that a class can have multiple responsibilities (particularly if they are all realised using the same data members), but the responsibilities can be separated by creating a pure virtual class for each responsibility which the class inherits. Clients can then use the pure virtual class in place of the original class so that they are only aware of the parts of the class that they use.
Matt

Find content
Not Telling