⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 entry.h

📁 video disk recorder - linux
💻 H
字号:
/* * entry.h: Data structure to handle still pictures * * See the README file for copyright information and how to reach the author. * * $Id: entry.h 1.1 2008/01/06 12:30:50 kls Exp $ */#ifndef _ENTRY_H#define _ENTRY_H#include <vdr/tools.h>class cPictureEntry : public cListObject {private:  char *name;  const cPictureEntry *parent;  bool isDirectory;  mutable cList<cPictureEntry> *entries;  void Load(void) const;public:  cPictureEntry(const char *Name, const cPictureEntry *Parent, bool IsDirectory);  virtual ~cPictureEntry();  virtual int Compare(const cListObject &ListObject) const;  const char *Name(void) const { return name; }  const cPictureEntry *Parent(void) const { return parent; }  bool IsDirectory(void) const { return isDirectory; }  cString Path(void) const;  const cList<cPictureEntry> *Entries(void) const;  const cPictureEntry *FirstPicture(void) const;  const cPictureEntry *LastPicture(void) const;  const cPictureEntry *PrevPicture(const cPictureEntry *This = NULL) const;  const cPictureEntry *NextPicture(const cPictureEntry *This = NULL) const;  };#endif //_ENTRY_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -