22 lines
No EOL
506 B
C++
22 lines
No EOL
506 B
C++
#pragma once
|
|
|
|
#if defined(_WORK)
|
|
|
|
class CDNUserRepository;
|
|
class CDNBillingConnection
|
|
{
|
|
public:
|
|
CDNBillingConnection(void);
|
|
virtual ~CDNBillingConnection(void);
|
|
|
|
int OnBalanceInquiry(CDNUserRepository *pUser);
|
|
int OnBuy(CDNUserRepository *pUser);
|
|
int OnPackageBuy(CDNUserRepository *pUser);
|
|
int OnGift(CDNUserRepository *pUser);
|
|
int OnPackageGift(CDNUserRepository *pUser);
|
|
int OnCoupon(CDNUserRepository *pUser);
|
|
};
|
|
|
|
extern CDNBillingConnection *g_pBillingConnection;
|
|
|
|
#endif // #if defined(_WORK)
|