Stream does not have to use virtual methods
Stefan Schuermans

Stefan Schuermans commited on 2011-12-19 17:59:20
Showing 2 changed files, with 4 additions and 4 deletions.

... ...
@@ -18,7 +18,7 @@ Stream::Stream():
18 18
 {
19 19
 }
20 20
 
21
-/// virtual destructor
21
+/// destructor
22 22
 Stream::~Stream()
23 23
 {
24 24
   // free current frame
... ...
@@ -26,8 +26,8 @@ public:
26 26
   /// constructor
27 27
   Stream();
28 28
 
29
-  /// virtual destructor
30
-  virtual ~Stream();
29
+  /// destructor
30
+  ~Stream();
31 31
 
32 32
 public:
33 33
   /**
... ...
@@ -46,7 +46,7 @@ public:
46 46
    * @brief set current frame
47 47
    * @param[in] pFrame current frame (NULL for none)
48 48
    */
49
-  virtual void setFrame(stBlinkenFrame *pFrame);
49
+  void setFrame(stBlinkenFrame *pFrame);
50 50
 
51 51
   /**
52 52
    * @brief get current frame
53 53