#pragma once #include class CAccount; class CSkype : public Skype { public: Account* newAccount(int oid); }; class CAccount : public Account { public: typedef DRef Ref; typedef DRefs Refs; bool isLoggedOut; CAccount(unsigned int oid, SERootObject* root); void OnChange(int prop); void BlockWhileLoggingIn(); void BlockWhileLoggingOut(); };