Source: data-flow/include/wrapper.h
|
|
|
|
// Copyright (C) 2001 Jean-Marc Valin
#ifndef WRAPPER_H
#define WRAPPER_H
using namespace std;
#include "UIDocument.h"
#include "Network.h"
#include "ParameterSet.h"
#include "IntfNode.h"
class OFWrapper {
UIDocument *doc;
Network *net;
int count;
IntfNode *intf;
bool withInput;
public:
OFWrapper(UIDocument *_doc);
~OFWrapper();
void init(const ParameterSet ¶ms, bool withInput=false);
ObjectRef process(ObjectRef in);
ObjectRef process();
};
#endif
Generated by: jmvalin@usw-pr-shell2 on Mon Jun 24 00:06:36 2002, using kdoc 2.0a40. |