I have quite similiar design question. It's however the inverse of the top question. I'm writing a C++ library which is still very small. I'm planning to use quite advanced method to manage most of setters and getters in my library:
class Settings
{
public:
Settings();
Settings(const Settings & copy);
~Settings();
/// Setter
Settings & operator() (argtype::Title, std::string);
/// <_huge pile_ of other proberties>
// Getter
const std::string & operator() (argtype::Title);
private:
// <data members>
};
Where argtype is namespace and Title is a instantiation of template IdToken:
namespace argtype { typedef const IdToken<1> Title; };
The IdToken is a template that just generates unique types for me.
Title constant is then defined in library namespace like this:
argtype::Title TITLE = argtype::IdToken<1>();
Example how the setters and getters would work in user code:
Settings object;
// setter chaining:
object(TITLE, "Testing title") // sets the title and returns refence to *this
(TITLE, "Testing again") // sets the title again.
(TITLE, "third title"); // sets the title yet again.
// getters
std::string txt = object(TITLE);
And now the question(s):
-Is it worth of doing it like this? In future the Settings class might get very big and would have a lot of these setters/getters.
-Should I prefer normal functions instead of the fancy operator syntax?
Settings object;
// setter chaining:
object.title("Testing title") // sets the title and returns refence to *this
.title("Testing again") // sets the title again.
.title("third title"); // sets the title yet again.
// getters
std::string txt = object.title();
Normal member functions might be easier for me as library writer and harder for the library users. Right?
I already have done some implementation using the operator()() approach just to test it. I'm not buzy with this luckily. :)
And just for fun: possible anti-patterns (see http://en.wikipedia.org/wiki/Anti-pattern) on this post: Poltergeists, Accidental complexity, Cargo cult programming, Spaghetti code and Silver bullet.