diff options
-rw-r--r-- | dxr3blackframe.c | 2 | ||||
-rw-r--r-- | dxr3singleton.h | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dxr3blackframe.c b/dxr3blackframe.c index c21417b..c128b6d 100644 --- a/dxr3blackframe.c +++ b/dxr3blackframe.c @@ -20,7 +20,7 @@ */ // ================================== -// used when channel gets switched +//! used when channel gets switched char blackframe[] = { 0x0, 0x0, 0x1, 0xb3, 0x2d, 0x2, 0x40, 0x23, 0x24, 0x9f, 0x23, 0x82, 0x10, 0x20, 0x20, 0x26, diff --git a/dxr3singleton.h b/dxr3singleton.h index 6db2c26..849224d 100644 --- a/dxr3singleton.h +++ b/dxr3singleton.h @@ -23,8 +23,11 @@ #define _DXR3_SINGLETON_H_ // ================================== -// This template makes it easy to make -// global things +//! A singleton template. +/*! + Is a nice solution to use only + one instance of a class. +*/ template<typename T> class Singleton { |