MEL
Microthread & Execution library
CommonTypes.h
Go to the documentation of this file.
1 #pragma once
6 namespace mel
7 {
8  namespace mpl
9  {
10  class Small{ char dummy[1];};
11  class Big { char dummy[2]; };
12  struct AnyType
13  {
14  template <class T> AnyType( const T& ) {};
15  //Small operator==( const AnyType& ) const;
16 
17  //friend Small operator==(const AnyType&, const AnyType&);
18  //friend Small operator==(const AnyType&, const AnyType&);
19  //template<class T> friend Small operator==(const AnyType&, const T&);
20  //template<class T> friend Small operator==(const T&, const AnyType&);
21  // friend template<class T> Small operator==(const AnyType&, const T&);
22  };
23 
24  }
25  //::mpl::Small operator==(const::mel::mpl::AnyType&, const::mel::mpl::AnyType&);
26 }
Definition: CommonTypes.h:11
Definition: CommonTypes.h:10
Definition: Callback_Impl.h:11
Definition: CommonTypes.h:13