MyString_impl.C
#include "MyString_impl.h"
#include "ConcatComponent.h"
#include "ConcatParms.h"
MyString_impl::MyString_impl(ConcatComponent *c)
: m_component(c) {}
MyString_impl::~MyString_impl() {}
// This method will be inovked from the NewString
// Component whenever it writes to its output port
int
MyString_impl::sendMyString(MyString *sls) {
// Do relevant stuff here
return 0;
}
Back to CCA Compliant HPC++
based CCAT Components
mgovinda@cs.indiana.edu
Last modified: Tue Jan 25 16:26:04 EST 2000