ConcatComponentHome.h
/ -*-c++-*-
#ifndef _CONCAT_COMPONENT_HOME_H
#define _CONCAT_COMPONENT_HOME_H
#include "ConcatComponent.h"
class ConcatComponentHome {
public:
// Instantiate a Concat Component.
static ConcatComponent* instantiate();
// Does general component initialization before the component could be
// instantiated and used. This is framework specific, and could be
// automatically generated by a stub compiler. Currrently, just registers the
// ports and this component itself with the ports and the components factory
// respectively.
static void init();
private:
static bool initFlag;
};
#endif // _CONCAT_COMPONENT_HOME_H
Back to CCA Compliant HPC++
based CCAT Components
mgovinda@cs.indiana.edu
Last modified: Tue Jan 25 15:12:37 EST 2000