class NetCType

The NetCType. More...

Definition#include <data-flow/include/net_types.h>
Template formNetCType<template class T>
InheritsPrintableGenericType <T>
List of all Methods
Annotated List
Files
Globals
Hierarchy
Index

Public Methods

Public Static Methods


Detailed Description

The NetCType. We are using this class to wrap standard C types into objects that are Object compatible.

 NetCType ()

default constructor

 NetCType (T val)

constructor with a predefined value

NetCType ()

[virtual]

destructor

 operator T ()

cast operator

NetCType<T>&  operator= (NetCType<T> &type)

operator= between a NetCType and another NetCType

NetCType<T>&  operator= (T val)

operator= between a standard C type and a NetCType

int  operator== (NetCType<T> &type)

operator== between two NetCType

int  operator== (T val)

operator== between a NetCType and a standard C type

int  operator!= (NetCType<T> &type)

operator!= between two NetCType

int  operator!= (T val)

operator!= between a NetCType and a standard C type

NetCType<T> * alloc ()

[static]

NetCType<T> * alloc (const T &obj)

[static]

void  destroy ()

Reimplemented from Object.