#include <ostream>
#include <string>
Go to the source code of this file.
Functions | |
void | putHeader (std::ostream &os, int argc, char const *argv[]) |
Puts the standard file header (for generated files) to the CPP file. | |
void | openIncludeGuard (std::ostream &hpp, std::string const &basename) |
Opens the include guard for an HPP file. | |
void | closeIncludeGuard (std::ostream &hpp, std::string const &basename) |
Closes the include guard for an HPP file. | |
std::string | decodeFunctionName (std::string const §ion_name) |
Return the name of the decode function for the input section. | |
void | forwardDeclareClass (std::ostream &cpp, std::string const &class_name) |
Forward declare a class in a source file. | |
void | includeLocalFile (std::ostream &cpp, std::string const &to_include) |
Include a "local" file. |
Copyright (c) 2004, Thomas Guest. All rights reserved.
|
Closes the include guard for an HPP file.
|
|
Return the name of the decode function for the input section.
|
|
Forward declare a class in a source file.
|
|
Include a "local" file. Example: includeLocalFile(cpp, "section.hpp") puts #include "section.hpp" |
|
Opens the include guard for an HPP file.
|
|
Puts the standard file header (for generated files) to the CPP file.
|