Main Page | Namespace List | Compound List | File List | Compound Members | File Members

hs.h

Go to the documentation of this file.
00001 /*--------------------------------------------------------------------
00002  *
00003  * (C) Copyright Koninklijke Philips Electronics NV 2006. 
00004  * All rights reserved. This software is licensed under the terms of
00005  * version 2.1 of the GNU Lesser General Public License as published 
00006  * by the Free Software Foundation. For licensing and warranty
00007  * information, see the file COPYING in the main directory.
00008  *
00009  *------------------------------------------------------------------*/
00010 
00011 #ifndef HS_H
00012 #define HS_H
00013 
00014 #include "yapi.h"
00015 #include "vya.h"
00016 
00017 class HS : public Process
00018 {
00019 public:
00020   //constructors
00021   HS(
00022     const Id&           n, 
00023     In<VYApixel>&       Cin,
00024     In<VYAlineLength>&  inLineLengthIn,
00025     In<VYAlineLength>&  outLineLengthIn,
00026     Out<VYApixel>&      Cout
00027   );
00028 
00029   // type member function
00030   const char* type() const { return "HS"; }
00031 
00032   // main member function
00033   void main();
00034 
00035 private:
00036   // input ports
00037   InPort<VYApixel>      CinP;
00038   InPort<VYAlineLength> inLineLengthInP;
00039   InPort<VYAlineLength> outLineLengthInP;
00040 
00041   // output ports
00042   OutPort<VYApixel>     CoutP;
00043 };
00044 
00045 #endif

Generated on Wed Feb 15 14:52:44 2006 for scaling by doxygen 1.3.2