From e5670d5e3c625f5e5a850fa4a706e89536594995 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Sun, 10 Dec 2000 03:42:28 +0000 Subject: [PATCH] Correct the generated filenames [SVN r8444] --- src/gen_all.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/gen_all.py b/src/gen_all.py index fd8d78cc..416c66f1 100644 --- a/src/gen_all.py +++ b/src/gen_all.py @@ -6,12 +6,12 @@ from gen_singleton import * from gen_extclass import * def gen_all(args): - open('callback.h', 'w').write(gen_callback(args)) - open('caller.h', 'w').write(gen_caller(args)) - open('init_function.h', 'w').write(gen_init_function(args)) - open('signatures.h', 'w').write(gen_signatures(args)) - open('instance.h', 'w').write(gen_singleton(args)) - open('extclass.h', 'w').write(gen_extclass(args)) + open('callback.hpp', 'w').write(gen_callback(args)) + open('caller.hpp', 'w').write(gen_caller(args)) + open('init_function.hpp', 'w').write(gen_init_function(args)) + open('signatures.hpp', 'w').write(gen_signatures(args)) + open('instance.hpp', 'w').write(gen_singleton(args)) + open('extension_class.hpp', 'w').write(gen_extclass(args)) if __name__ == '__main__': import sys