mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 09:20:52 +08:00
9697f95b8f
This reverts commit 15d999759e
.
14 lines
221 B
C++
14 lines
221 B
C++
#include "stdafx.h"
|
|
#include ".\chatdemo.h"
|
|
|
|
CChatDemo::CChatDemo(const char *s)
|
|
{
|
|
m_buf = acl_vstring_alloc(256);
|
|
acl_vstring_strcpy(m_buf, s);
|
|
}
|
|
|
|
CChatDemo::~CChatDemo(void)
|
|
{
|
|
acl_vstring_free(m_buf);
|
|
}
|