// ABCSClassFactory.h: interface for the ABCSClassFactory class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_ABCSCLASSFACTORY_H__4645BD4D_A1E3_11D3_9D28_0000F80788FD__INCLUDED_) #define AFX_ABCSCLASSFACTORY_H__4645BD4D_A1E3_11D3_9D28_0000F80788FD__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #include "rtrapi.h" #include "ABCBook.h" class ABCSClassFactory : public RTRClassFactory { public: ABCSClassFactory(); virtual ~ABCSClassFactory(); rtr_status_t CreateRTRApplicationMessage( rtr_const_msgbuf_t pmsgCallersData, rtr_msglen_t msglCallersDataLength, RTRApplicationMessage *&pApplicationMessage); private: ABCBook *m_pBook; }; #endif // !defined(AFX_ABCSCLASSFACTORY_H__4645BD4D_A1E3_11D3_9D28_0000F80788FD__INCLUDED_)