Skip to content

A program to "explode" a C++ header file containing one or more classes into a C++ source file.

Notifications You must be signed in to change notification settings

patrickmacarthur/headexploder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HeadExploder
============

A tool to "explode" a C++ header file containing one or more classes into a C++
source file.

Please note that this tool was made for my own use and makes many terrible
assumptions about the formatting of your source file.  For one, it requires
that comments for methods are below the declarations of the methods:

   int method( int a ) const;
     // my comment

This is because this is the way my CS professor formats his header files, and I
have only used this tool on header files in this format.

Usage:
  $ headexploder <header file> <file to create>

Example:
  $ headexploder MyClass.h MyClass.cc

Please report bugs to [email protected]

About

A program to "explode" a C++ header file containing one or more classes into a C++ source file.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages