The Generated Abstract Base Class
The base class DayOfWeekPortTypeBase is located in the include\DayOfWeekExample directory. Following is an excerpt.
 
class DAYOFWEEKPORTTYPESERVICE_DECLSPEC 
             DayOfWeekPortTypeBase : public rwsf::MessageHandlerImp  //1
{
  public:
    virtual ~DayOfWeekPortTypeBase();
 
    virtual void init(const rwsf::Config& initParams);              //2
    virtual void destroy();
 
    virtual std::string getDayOfWeek(rwsf::CallInfo& callInfo,      //3
                                   const std::string& date_in) = 0;
    /**
     * If the assertion fails, create and throw a rwsf::Exception
     * exceptionwith the given fault string
    **/
    void serverAssert(bool assertion, const RWCString& msg) const;  //4
 
};