00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef BYTESTREAM_USR_H
00012 #define BYTESTREAM_USR_H
00013
00014 #include "yapi.h"
00015 #include "bytestream_args.h"
00016
00017 class byteStreamUsr: public Process
00018 {
00019 public:
00020
00021 byteStreamUsr
00022 (
00023 const Id& n,
00024 Out<byteStream_args_t>& arguments,
00025 char* filename
00026 );
00027
00028
00029 const char* type() const {return "byteStreamUsr";}
00030
00031
00032 void main();
00033
00034 private:
00035 OutPort<byteStream_args_t> argumentsP;
00036
00037 char* cfg_filename;
00038 };
00039
00040 #endif // BYTESTREAM_USR_H