Song.cpp
上传用户:boyawuliu
上传日期:2021-10-14
资源大小:8k
文件大小:0k
源码类别:

TreeView控件

开发平台:

Visual C++

  1. //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // File name : Song.cpp
  4. // Purpose   : Class implement for the Song class, represent for Song file
  5. //
  6. //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  7. #include "Song.h"
  8. Song::Song(void)
  9. {
  10. m_Type = 1;
  11. }
  12. Song::~Song(void)
  13. {
  14. }