File: PlotModBuilder.h

package info (click to toggle)
metview 5.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 44,932 kB
  • sloc: cpp: 211,811; ansic: 33,467; xml: 3,942; sh: 2,942; yacc: 1,183; fortran: 762; lex: 761; perl: 700; python: 340; f90: 236; makefile: 92
file content (92 lines) | stat: -rw-r--r-- 2,446 bytes parent folder | download | duplicates (3)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/***************************** LICENSE START ***********************************

 Copyright 2012 ECMWF and INPE. This software is distributed under the terms
 of the Apache License version 2.0. In applying this license, ECMWF does not
 waive the privileges and immunities granted to it by virtue of its status as
 an Intergovernmental Organization or submit itself to any jurisdiction.

 ***************************** LICENSE END *************************************/

// File PlotModBuilder
// Gilberto Camara - ECMWF Apr 97
//
// .NAME:
//  Builder
//
// .AUTHOR:
//  Gilberto Camara and Fernando Ii
//
// .SUMMARY:
//  Describes the builder class, an abstract class for
//  building the PlotMod page hierarchy from a request
//
// .DESCRIPTION:
//  This class is based on the "Builder" pattern (see
//  "Design Patterns" book, page 97).
//
//  The idea is to define a base class for all possible instances
//  of requests which create a plot window hierarchy from a request
//  Details of internal structure of the objects being created are
//  hidden from client applications which then can invoke the
//  appropriate builder.
//
//  There are three types of specialised builders in PlotMod:
//
//  - SuperPageBuilder, which builds a page hierarcy based on
//    a "SUPERPAGE" request
//
//  - PlotWindowBuilder, which builds a page hierarchy based on
//    a "PLOT" request
//
//  - GribBuilder, which builds a page hierarchy based on a 
//    "GRIB" request
//
//
//  These builders will be concrete classes derived from the
//  Builder abstract (base) class
//
// .DESCENDENT:
//  SuperPageBuilder, PlotWindowBuilder, GribBuilder
//
// .RELATED:
//  Presentable, SuperPage, Page, DataObject
//
// .ASCENDENT:
//
//
#ifndef PlotModBuilder_H
#define PlotModBuilder_H

#include "Prototype.hpp"

class Presentable;
class PlotModBuilder;
class PmContext;

struct BuilderTraits {
	typedef PlotModBuilder Type;
	static  Type&          DefaultObject();
};

class PlotModBuilder : public Prototype <BuilderTraits>
{

public:

        // Contructors
	PlotModBuilder ( const Cached& builderName ): 
		Prototype<BuilderTraits> ( builderName, this ){}

        // Destructor
	virtual ~PlotModBuilder() {}

        // Methods
	virtual Presentable* Execute ( PmContext& ) = 0;
        virtual Cached GetView(PmContext &);

	// Friends
	//friend ostream& operator<<(ostream& ostr, const PlotModBuilder& bld)
	//{ return ostr << bld.Name(); }
};

#endif