Files correlati : Ricompilazione Demo : [ ] Commento : Migliorata gestione configurazione analitica in modo da velocizzare leggermente la creazione delle maschere dinamiche. git-svn-id: svn://10.65.10.50/trunk@13344 c028cbd2-c16b-5b4b-a496-9718f37d4682
35 lines
533 B
C++
Executable File
35 lines
533 B
C++
Executable File
#include <applicat.h>
|
|
#include <automask.h>
|
|
#include <reprint.h>
|
|
|
|
#include "ca1.h"
|
|
#include "calib02.h"
|
|
|
|
|
|
class TPrint_ca : public TSkeleton_application
|
|
{
|
|
public:
|
|
virtual void main_loop();
|
|
};
|
|
|
|
void TPrint_ca::main_loop()
|
|
{
|
|
TFilename path;
|
|
while (select_custom_file(path, "rep", "ca1100"))
|
|
{
|
|
TReport_book book;
|
|
TAnal_report rep;
|
|
rep.load(path);
|
|
book.add(rep);
|
|
book.print_or_preview();
|
|
}
|
|
}
|
|
|
|
int ca1100(int argc, char* argv[])
|
|
{
|
|
TPrint_ca a;
|
|
a.run(argc, argv, TR("Stampa anagrafiche"));
|
|
return 0;
|
|
}
|
|
|