473,763 Members | 9,145 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

class generator

bob
Hi,

I'm looking for a tool (preferable with a gui but thats not essential)
that will generate my class header and .cxx file. i.e. I tell the tool
that my class is to have attributes x,y,z, of type a, b, c etc. and it
will generate the header and .cxx... i.e. essentially to save me time
each time I have to add a new class to my project.

I'm on windows with borland c++ builder.

thanks much

GrahamO

Jan 29 '07 #1
5 2339
bo*@blah.com wrote:
I'm looking for a tool [..]

I'm on windows with borland c++ builder.
Have you tried asking in a Windows newsgroup or a Borland
C++ Builder newsgroup? What did they say?
Jan 29 '07 #2
bob

no reply from those groups... any ideas on this group? surely there is
some sort of tool out there that does this, no? If not then there's
thousands and thousands of c++ developers writing the same mindless
lines of code over and over and over and.... :)

cheers

GrahamO

On Jan 29, 2:41 pm, "Victor Bazarov" <v.Abaza...@com Acast.netwrote:
b...@blah.com wrote:
I'm looking for a tool [..]
I'm on windows with borland c++ builder.Have you tried asking in a Windows newsgroup or a Borland
C++ Builder newsgroup? What did they say?
Jan 29 '07 #3
On 29 Jan 2007 03:20:04 -0800, "bo*@blah.c om" <Gr**********@g mail.comwrote:
>Hi,

I'm looking for a tool (preferable with a gui but thats not essential)
that will generate my class header and .cxx file. i.e. I tell the tool
that my class is to have attributes x,y,z, of type a, b, c etc. and it
will generate the header and .cxx... i.e. essentially to save me time
each time I have to add a new class to my project.

I'm on windows with borland c++ builder.

thanks much

GrahamO
Although there are many tools to do this, try looking into your text editor
macro language. Maybe there's an easy way to at least get a skeleton of the
class created.
Jan 29 '07 #4

bo*@blah.com wrote:
Hi,

I'm looking for a tool (preferable with a gui but thats not essential)
that will generate my class header and .cxx file. i.e. I tell the tool
that my class is to have attributes x,y,z, of type a, b, c etc. and it
will generate the header and .cxx... i.e. essentially to save me time
each time I have to add a new class to my project.

I'm on windows with borland c++ builder.

thanks much

GrahamO
Eclipse (free IDE) with the C++ plugin... if you are using Windows,
you will also need to install Cygwin or MinGW... the Eclipse plugin
will let you use a C++ perspective, when you create a new C++ class
your header file and implementation files will be automatically
generated... The constructors/destructors will also be creted for you
(you can specify them in the New C++ class dialog)... as far as other
members... no... however, I believe Eclipse has another program that
will let you incorporate UML diagrams and create classes from those
diagrams... but I haven't looked at that, and it may only work in Java
perspectives.

Jan 29 '07 #5
bo*@blah.com wrote:
>
no reply from those groups... any ideas on this group? surely there


Please don't top-post. Your replies belong following or interspersed
with properly trimmed quotes. See the majority of other posts in the
newsgroup, or the group FAQ list:
<http://www.parashift.c om/c++-faq-lite/how-to-post.html>
Jan 29 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

13
2033
by: Emmanuel | last post by:
Hi, I run across this problem, and couldn't find any solution (python 2.2.2) : Code : =========== from __future__ import generators >>> class titi:
2
2080
by: Clark C. Evans | last post by:
There is an interesting difference between how exceptions are handled between iterators constructed from a class, and iterators constructed from a generator. The following are "mostly equivalent": class iterable_via_class: def __iter__(self): self._next = self._one return self def next(self): return self._next()
13
1435
by: Bulba! | last post by:
Hello Mr Everyone, From: http://docs.python.org/tut/node11.html#SECTION0011900000000000000000 "Define a __iter__() method which returns an object with a next() method. If the class defines next(), then __iter__() can just return self:" The thing is, I tried to define __iter__() directly without explicit
41
3081
by: AngleWyrm | last post by:
I have created a new container class, called the hat. It provides random selection of user objects, both with and without replacement, with non-uniform probabilities. Uniform probabilities are a degenerate case, and can also be stored. Here's the web-page, with complete source, illustration, and example usage. Take a look-see, and post your critique! http://home.comcast.net/~anglewyrm/hat.html
1
6273
by: John C | last post by:
Hi, I am trying to include the generation of random numbers in my c++ class. However I don't quite know how to incorporate it. To start with, I managed to get random numbers going via the following... ============ #include <boost/random/linear_congruential.hpp> #include <boost/random/uniform_real.hpp> #include <boost/random/variate_generator.hpp>
3
1635
by: Bernard Bourée | last post by:
With VB6 we had an addin called Class Generator which was very helpful to create the framework of a class. I could not find the same tool with vb.net ? Does it desapear ? -- Bernard Bourée bernard@bouree.net
10
2683
by: Ognen Duzlevski | last post by:
Hi, I have a "language definition" file, something along the lines of: page :: name : simple caption : simple function : complex function :: name : simple code : simple
1
1931
by: ligong.yang | last post by:
Hi all, I got tortured by a very weird problem when I was using k. wilder's random generator class in my program. PS: wilder's generator class can be found at http://oldmill.uchicago.edu/~wilder/Code/random/. Firstly, I got the notorious "fatal error C1010: unexpected end of file while looking for precompiled header directive" error when I tried to compile 'randtest.c' provided by wilder.
2
2629
by: Jeff Johnson | last post by:
Disclaimer: I am extremely new to Web services and may very well be doing the wrong thing! Background: I have a Web service and a Windows Forms client app (VS 2005). The Web service exposes a method to accept a ScheduleEntry object, which is a class I have written. I felt doing this would be cleaner than passing 7 or 8 parameters, but I've run into some problems. First, I learned that declaring classes in Web services isn't such a...
9
2402
by: raylopez99 | last post by:
Here are two different ways of achieving a mediator pattern: the first, using circular references (for lack of a better way to describe it), but not using delegates, with the second using delegates. The first way is an adaptation from C++ for Dummies by Jeff Cogswell. But obviously it uses references not pointers. The second way (I'll post this later, as I haven't yet done it) will be adapted from the book C#3.0 Design Patterns by...
0
9564
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9387
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10002
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9823
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8822
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7368
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6643
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5270
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5406
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.