scImageHandler.dll
 全て クラス 名前空間 関数 変数 列挙値
my_null.h
1 
2 #ifndef _MY_NULL_DEFINITION_H_
3 #define _MY_NULL_DEFINITION_H_
4 
6 
12 const class _MY_NULL_CLASS_
13 {
14 public:
18  template<class T>
19  operator T*() const { return 0; }
23  template<class C, class T>
24  operator T C::*() const { return 0; }
25 private:
29  void operator&() const;
30 } my_null;
31 
32 
33 
34 #endif // _MY_NULL_DEFINITION_H_
35 
void operator&() const
ユーザ定義 NULL
Definition: my_null.h:12