/////////////////////////////////////////////////////////// // ClassRemote.cpp // Implementation of the Class ClassRemote // Created on: XXXXXXX // Original author: Sparx Systems /////////////////////////////////////////////////////////// #include "ClassRemote.h" ClassRemote::ClassRemote() { int a = 0; } ClassRemote::~ClassRemote() { int B = 0; } int ClassRemote::operation1() { return 0; } int ClassRemote::operation2() { return 0; }