ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/DecentralizedMedia/MediaFolder.hpp
Revision: 560
Committed: 2005-08-27T17:38:18-07:00 (19 years, 9 months ago) by douglas
File size: 707 byte(s)
Log Message:
Hmm, no worky yet.

File Contents

# Content
1 // Media Folder
2 //
3 // Douglas Thrift
4 //
5 // $Id$
6
7 #ifndef _MediaFolder_hpp_
8 #define _MediaFolder_hpp_
9
10 #include <cxx/platform.hpp>
11
12 #ifdef MENES_PRAGMA_ONCE
13 #pragma once
14 #endif
15
16 #include <api/path.hpp>
17
18 #include "MediaFile.hpp"
19
20 class MediaFolder
21 {
22 private:
23 mutable _R<Connector> connector;
24 public:
25 api::Path path, root;
26 MediaFolder(const _R<Connector>& connector, const api::Path& path);
27 MediaFolder(const _R<Connector>& connector, const api::Path& path, const api::Path& root);
28 cse::String GetName() const;
29 _L<MediaFile> GetFiles(unsigned page) const;
30 unsigned GetFilesPages() const;
31 _L<MediaFolder> GetFolders(unsigned page) const;
32 unsigned GetFoldersPages() const;
33 };
34
35 #endif//_MediaFolder_hpp_

Properties

Name Value
svn:eol-style native
svn:keywords Id