Source: data-flow/include/IntfNode.h
|
|
|
|
// Copyright (C) 2001 Jean-Marc Valin
#ifndef INTFNODE_H
#define INTFNODE_H
#include "Node.h"
#include "Buffer.h"
class IntfNode : public Node {
int outputID;
RCPtr<Buffer> buff;
int lookAhead;
int lookBack;
public:
IntfNode(string nodeName, const ParameterSet ¶ms);
void initialize();
void reset();
ObjectRef getOutput(int output_id, int count);
void request(int outputID, const ParameterSet &req);
void init();
void setValue(int count, ObjectRef val);
int getLookAhead() {return lookAhead;}
int getLookBack() {return lookBack;}
};
#endif
Generated by: jmvalin@usw-pr-shell2 on Mon Jun 24 00:06:36 2002, using kdoc 2.0a40. |