forked from panda3d/panda3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctionWriters.h
More file actions
49 lines (40 loc) · 1.12 KB
/
functionWriters.h
File metadata and controls
49 lines (40 loc) · 1.12 KB
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
/**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file functionWriters.h
* @author drose
* @date 2001-09-14
*/
#ifndef FUNCTIONWRITERS_H
#define FUNCTIONWRITERS_H
#include "dtoolbase.h"
#include "functionWriter.h"
#include <set>
/**
* A set of zero or more FunctionWriter pointers accumulated by the various
* InterfaceMaker objects that are generating code for one particular output
* source file.
*/
class FunctionWriters {
public:
FunctionWriters();
~FunctionWriters();
FunctionWriter *add_writer(FunctionWriter *writer);
void write_prototypes(std::ostream &out);
void write_code(std::ostream &out);
protected:
class IndirectCompareTo {
public:
bool operator () (const FunctionWriter *a, const FunctionWriter *b) const {
return a->compare_to(*b) < 0;
}
};
typedef std::set<FunctionWriter *, IndirectCompareTo> Writers;
Writers _writers;
};
#endif