00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef PORT_H
00029 #define PORT_H
00030
00031 #include "pnxmltags.h"
00032 #include "ymldefs.h"
00033 #include <iostream>
00034
00035 #include "id.h"
00036 #include "io.h"
00037
00038 #define YMLGEN_PORT_BASENAME "YMLGen_Port_"
00039
00040 template<class T>
00041 class InPort : public Id, public In<T> {
00042 In<T> *in;
00043
00044 public:
00045 InPort(const Id& n, In<T>& i);
00046 virtual ~InPort() {}
00047
00048 void read(T& value);
00049 void read(T* p, unsigned int n);
00050
00051 yapiObject_t getYAPIType() {return yapiPort;}
00052 virtual void dumpYML(std::ostream &stream, int tablevel);
00053 };
00054
00055 template<class T>
00056 class OutPort : public Id, public Out<T> {
00057 Out<T> *out;
00058
00059 public:
00060 OutPort(const Id& n, Out<T>& i);
00061 virtual ~OutPort() {}
00062
00063 void write(const T& t);
00064 void write(const T* p, unsigned int n);
00065
00066 yapiObject_t getYAPIType() {return yapiPort;}
00067 virtual void dumpYML(std::ostream &stream, int tablevel);
00068 };
00069
00070
00072
00073 template<class T>
00074 void read(InPort<T>& s, T& t);
00075
00076 template<class T>
00077 void read(InPort<T>& s, T* p, unsigned int n);
00078
00079 template<class T>
00080 void write(OutPort<T>& s, const T& t);
00081
00082 template<class T>
00083 void write(OutPort<T>& s, const T* p, unsigned int n);
00084
00085
00087
00088
00089
00090 #include "port.cc"
00091
00092 #endif