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
|
/***************************** 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 *************************************/
//
// .NAME:
// Visitor
//
// .AUTHOR:
// Gilberto Camara, Baudouin Raoult and Fernando Ii
//
// .SUMMARY:
// An abstract base class for definition of a "Visitor" pattern
//
//
// .CLIENTS:
// Presentable
//
//
// .RESPONSABILITIES:
// Provide an interface for the subclasses which visit the
// page hierarchy
//
//
// .COLLABORATORS:
//
//
// .BASE CLASS:
//
//
// .DERIVED CLASSES:
// Device, MacroVisitor
//
// .REFERENCES:
// The relation between
//
#ifndef Visitor_H
#define Visitor_H
class SuperPage;
class Page;
class SubPage;
class Visitor {
public:
// Contructors
Visitor() {}
// Destructor
virtual ~Visitor() {}
// Visitor methods
virtual void Visit ( SuperPage& ) = 0;
virtual void Visit ( Page& ) = 0;
virtual void Visit ( SubPage& ) = 0;
// virtual void Visit ( MagnifyPage& ) = 0;
// virtual void Visit ( EditMapPage& ) = 0;
private:
// No copy allowed
Visitor(const Visitor&);
Visitor& operator=(const Visitor&){return *this;}
};
#endif
|