ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/DecentralizedMedia/MediaFile.hpp
Revision: 534
Committed: 2005-06-29T23:01:02-07:00 (19 years, 11 months ago) by douglas
File size: 667 byte(s)
Log Message:
So long ext::String, we'll miss you, but not much we really still have you as cse::String. Also, other stuff.

File Contents

# Content
1 // Media File
2 //
3 // Douglas Thrift
4 //
5 // $Id$
6
7 #ifndef _MediaFile_hpp_
8 #define _MediaFile_hpp_
9
10 #include <menes/platform.hpp>
11
12 #ifdef MENES_PRAGMA_ONCE
13 #pragma once
14 #endif
15
16 #include <menes-api/path.hpp>
17 #include <menes-dbi/connection.hpp>
18
19 class MediaFile
20 {
21 private:
22 mutable _H<dbi::Connection> connection;
23 public:
24 api::Path path;
25 cse::String artist, title, album, genre;
26 MediaFile(_H<dbi::Connection>& connection, const api::Path& path);
27 MediaFile(_H<dbi::Connection>& connection, const api::Path& path, const cse::String& artist, const cse::String& title, const cse::String& album, const cse::String& genre, const api::Path& root);
28 };
29
30 #endif//_MediaFile_hpp_

Properties

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