devxlogo

Automatic Creation of Wrapper Methods in a Class

Automatic Creation of Wrapper Methods in a Class

Question:
I created a class such as this:

 class foo { int a; int b; char *atext; float anum; int c;public : void set_a(int newa); int get_a(); void set_b(int newb); int get_b(); ...}

I remember once in a book they explained how these wrapper methods can be created without having to create each of them individually (something that began with “a” or something…). Unfortunately, I can’t remember which book I saw it in.

Is there any way that all the wrapper classes can be created in one go instead of having to create them individually?

Answer:
Both C++ Builder and Visual C++ enable you to automate this process by a point-and-click interface. However, this is strictly an IDE-dependent feature, not a C++ feature, so if you’re using another IDE such Turbo C++ or Dev-C++, you still need to write the accessors (“getters”) and mutators (“setters”) manually.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist