This commit is contained in:
aozhiwei 2023-10-11 17:10:10 +08:00
parent 1e72fdd1bf
commit 068d0d2b86
2 changed files with 7 additions and 0 deletions

View File

@ -10,3 +10,8 @@ AndroidAgent::AndroidAgent():BaseAgent()
AndroidAgent::~AndroidAgent() AndroidAgent::~AndroidAgent()
{ {
} }
const std::string AndroidAgent::GetAccountId()
{
}

View File

@ -12,6 +12,8 @@ public:
BEHAVIAC_DECLARE_AGENTTYPE(AndroidAgent, BaseAgent) BEHAVIAC_DECLARE_AGENTTYPE(AndroidAgent, BaseAgent)
const std::string GetAccountId();
private: private:
Android* owner_ = nullptr; Android* owner_ = nullptr;
}; };