comparison src/gl2ps-renderer.h @ 11584:cda4aa780d58

Another round of initialising members in the constructor initialisation list
author Pascal Dupuis <Pascal.Dupuis@uclouvain.be>
date Thu, 20 Jan 2011 17:07:26 -0500
parents fd0a3ac60b0e
children 12df7854fa7c
comparison
equal deleted inserted replaced
11583:c4c2cd67c440 11584:cda4aa780d58
30 OCTINTERP_API 30 OCTINTERP_API
31 glps_renderer : public opengl_renderer 31 glps_renderer : public opengl_renderer
32 { 32 {
33 public: 33 public:
34 glps_renderer (const int _fid, const std::string& _term) 34 glps_renderer (const int _fid, const std::string& _term)
35 : opengl_renderer () , fid (_fid), term (_term) { } 35 : opengl_renderer () , fid (_fid), term (_term),
36 fontsize (), fontname () { }
36 37
37 ~glps_renderer (void) { } 38 ~glps_renderer (void) { }
38 39
39 virtual void draw (const graphics_object& go); 40 virtual void draw (const graphics_object& go);
40 41