Horus Doc || C++ Reference || Class Overview   Pixels   Images   Detector   Geometry   Registry || Doxygen's quick Index  

VxFrmFtorDispFramenr.h

00001 /*
00002  *
00003  *  Copyright (c) 2001, TNO TPD, The Netherlands.
00004  *  All rights reserved. No part of this software may be handed to or used by persons 
00005  *  or organisation outside Kenniscentrum Watergraafsmeer (UvA-ISIS, TNO TPD) without 
00006  *  the written permission of TNO TPD.
00007  *
00008  *  Author(s):
00009  *      Jan Baan (baan@tpd.tno.nl)
00010  *      Jeroen Vendrig
00011  *
00012  * 
00013  */
00014 
00015 #ifndef VxFrmFtorDispFramenr_h
00016 #define VxFrmFtorDispFramenr_h
00017 
00018 #include "VxFrmFtorUfo.h"
00019 
00020 class VxFrmFtorDispFramenr : public VxFrmFtorUfo {
00021 public:
00022                             VxFrmFtorDispFramenr() {}
00023     
00024     virtual VxValue         doIt(int frame, const VxValue& input) {
00025         std::cout << "Frame: " << frame << std::endl;
00026         return VxValue((int) 0);
00027     }
00028         
00029     virtual HxString        getInputClass() const {
00030         return HxString("");
00031     }
00032     virtual HxString        getOutputClass() const {
00033         return HxString("int");
00034     }
00035 
00036     virtual HxString    name() const {
00037         return HxString("DispFrameNumber");
00038     }
00039 
00040     virtual VxFrmFtorUfo*   clone() const {
00041         return new VxFrmFtorDispFramenr();
00042     }
00043     
00044 private:
00045     
00046 };
00047 #endif

Generated on Tue Feb 3 14:18:44 2004 for C++Reference by doxygen1.2.12 written by Dimitri van Heesch, © 1997-2001