OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Thrift.h File Reference
#include <stdio.h>
#include <assert.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <string>
#include <map>
#include <list>
#include <set>
#include <vector>
#include <exception>
#include <typeinfo>
#include <boost/utility/enable_if.hpp>
#include <boost/type_traits/is_convertible.hpp>
Include dependency graph for Thrift.h:

Go to the source code of this file.

Classes

class  contrail::sandesh::TEnumIterator
 
class  contrail::sandesh::TOutput
 

Namespaces

 contrail
 
 contrail::sandesh
 
 contrail::sandesh::reflection
 
 contrail::sandesh::reflection::local
 

Macros

#define THRIFT_OVERLOAD_IF_DEFN(T, Y)
 
#define THRIFT_OVERLOAD_IF(T, Y)   THRIFT_OVERLOAD_IF_DEFN(T, Y) = NULL
 

Variables

TOutput contrail::sandesh::GlobalOutput
 

Macro Definition Documentation

#define THRIFT_OVERLOAD_IF (   T,
 
)    THRIFT_OVERLOAD_IF_DEFN(T, Y) = NULL

Definition at line 76 of file Thrift.h.

#define THRIFT_OVERLOAD_IF_DEFN (   T,
 
)
Value:

CONTRAIL-CUSTOM Helper macros to allow function overloading even when using boost::shared_ptr.

shared_ptr makes overloading really annoying, since shared_ptr defines constructor methods to allow one shared_ptr type to be constructed from any other shared_ptr type. (Even if it would be a compile error to actually try to instantiate the constructor.) These macros add an extra argument to the function to cause it to only be instantiated if a pointer of type T is convertible to a pointer of type U.

THRIFT_OVERLOAD_IF should be used in function declarations. THRIFT_OVERLOAD_IF_DEFN should be used in the function definition, if it is defined separately from where it is declared.

Definition at line 72 of file Thrift.h.