Song.h
资源名称:MediaTree.zip [点击查看]
上传用户:boyawuliu
上传日期:2021-10-14
资源大小:8k
文件大小:0k
源码类别:
TreeView控件
开发平台:
Visual C++
- //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- //
- // File name : Song.h
- // Purpose : Class interface for the Song class, represent for Song file
- //
- //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- #pragma once
- #include "mediabase.h"
- class Song :
- public MediaBase
- {
- public:
- Song(void);
- ~Song(void);
- };