RAIDA  1.9.0
IMarkerStyleROOT.h
1 // -*- C++ -*-
2 #ifndef AIDA_IMARKERSTYLEROOT_H
3 #define AIDA_IMARKERSTYLEROOT_H 1
4 
5 #include <string>
6 #include <vector>
7 
8 #include <RAIDA/IBrushStyleROOT.h>
9 #include <AIDA/IMarkerStyle.h>
10 
11 namespace AIDA {
12 
21 
22 public:
24  virtual ~IMarkerStyleROOT() { /* nop */; }
25 
26  IMarkerStyleROOT() { /* nop */; }
27 
31  virtual std::vector<std::string> availableShapes() const ;
32 
36  virtual std::string shape() const ;
37 
42  virtual bool setShape(const std::string & shape) ;
43 }; // class
44 } // namespace AIDA
45 #endif /* ifndef AIDA_IMARKERSTYLEROOT_H */
Style for all markers (histo representation, legend box etc.)
Definition: IMarkerStyle.h:28
virtual bool setShape(const std::string &shape)
Set current marker shape, e.g.
Definition: IMarkerStyleROOT.cc:24
Superclass for anything which can be drawn in different colours and with (possibly) transparent/opaqu...
Definition: IBrushStyleROOT.h:21
virtual std::vector< std::string > availableShapes() const
Get list of shapes available in this implementation.
Definition: IMarkerStyleROOT.cc:9
Style for all markers (histo representation, legend box etc.)
Definition: IMarkerStyleROOT.h:20
virtual std::string shape() const
Get current marker shape.
Definition: IMarkerStyleROOT.cc:18
virtual ~IMarkerStyleROOT()
Destructor.
Definition: IMarkerStyleROOT.h:24