Click here to Skip to main content
15,891,976 members
Articles / Desktop Programming / MFC

Add-in to create a class derived from CObject

Rate me:
Please Sign up or sign in to vote.
4.83/5 (3 votes)
7 Jul 2001CPOL2 min read 51.3K   478   11   4
Visual studio add-in to generate classes derived from CObject or subclasses. Includes serialization, Dump, AssertValid etc.

Image 1

Introduction

As many programmers have experienced, VC Class Wizard does not support generation of classes derived from CObject. Because most of my classes are derived directly or indirectly from CObject, I decided to create a simple add-in to do the job.

Features

  • Generates subclasses from CObject or derived classes.
  • Options to support serialization and versionable schema
  • Options to support debugging, AssertValid and Dump
  • Optional support for Cocoon documentation generator
  • New generated files are added to the current project automatically
  • Options are automatically saved in the registry
  • Toolbar button to invoke the add-in

Installation

  • Copy files CreateObjectClass.dll and CreateObjectClass.chm to you add-in directory
  • Start Visual Studio
  • Select the menu "Tools"-"Customize ..." tab "Add-ins and Macro files"
  • Click the "Browse ..." button and select CreateObjectClass.dll

Now you see the CreateObjectClass toolbar, with one button. Click the button and just try it. Please refer to the help file for further details.

Known issues

  • Dynamic object creation is only supported through serialization.
  • Some day I will also support CCmdTarget derived classes (message maps)
  • For some reason the new class does not appear in Class View. I think this problem occurred when I switched to service pack 5. You may delete the .opt and the .ncb file of your project to repair this deficiency. If you have any solution, let me know.
  • With little effort it is possible to create the file base name programmatically.
  • The software would be easier to read if the files are generated in the OnOk() member function of CClassSpecificationDialog. I am to lazy to do so now.

Legal issues

You can use this software under the GNU public license conditions. Please let me know if you want to improve the code. If it makes sense, I can include it in the next release.

Source code

Sources are included in the download. The core is the class CClassSpecificationDialog. It is all rather straightforward. The dialog is invoked from the class CCommands in the function CCommands::CreateObjectClassCommandMethod().

You need Htmlhelp.lib in order to link. This library is included in Microsoft's HTML Help workshop.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Retired
Netherlands Netherlands
Got an MS degree in Electrical Engineering a long time ago (in the time before Computer Science was invented as something you could study). I have been involved somehow in software development since I created my first Algol 60 program, using punched cards and an IBM360 machine. Now I develop C#/WPF desktop applications, partly for fun, partly to help other people.

Comments and Discussions

 
GeneralQuery Pin
aruru11-Apr-05 3:11
aruru11-Apr-05 3:11 
GeneralRe: Query Pin
tomjey03-Jul-06 6:08
tomjey03-Jul-06 6:08 
Generalbeginer Pin
dnqhung12-Jun-04 20:33
dnqhung12-Jun-04 20:33 
GeneralGood ... Pin
Ali Khanlarkhani21-Oct-02 0:34
Ali Khanlarkhani21-Oct-02 0:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.