-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeaderExploder.h
61 lines (47 loc) · 1.92 KB
/
HeaderExploder.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef HEADEREXPLODER_H
#define HEADEREXPLODER_H
/* HeaderExploder.h
Copyright (c) 2010 Patrick MacArthur
This file is part of HeadExploder
HeadExploder is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
HeadExploder is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with HeadExploder. If not, see <http://www.gnu.org/licenses/>.
*/
#include <istream>
#include <ostream>
#include <fstream>
#include <string>
/*
* The HeaderExploder class takes a C++ header file and creates a C++
* source file with the header comment, method comments, and method
* stubs duplicated.
*/
class HeaderExploder
{
public:
// Constructs a header exploder with the given input and output
// files.
HeaderExploder(const std::string & infile, const std::string & outfile);
// Destroys the header exploder and closes associated files
~HeaderExploder();
// Explodes the header into the specified source file.
void explode();
private:
// Gets the class name from a given line of code.
std::string getClassName( const std::string & line );
// Returns a string containing the function prototype
// (including scope and return value) in the current line.
std::string getFunctionPrototype( const std::string & className,
const std::string & line );
std::ifstream m_header;
std::ofstream m_source;
};
/* vi: set shiftwidth=4 textwidth=80: */
#endif