helper class for returning static files

This commit is contained in:
Adam D. Ruppe 2011-12-01 13:33:55 -05:00
parent 3f092d36d3
commit ab80b79c8f
1 changed files with 17 additions and 0 deletions

17
web.d
View File

@ -443,6 +443,23 @@ class ApiObject : WebDotDBaseType {
}
}
class DataFile : FileResource {
this(string contentType, immutable(void)[] contents) {
_contentType = contentType;
_content = contents;
}
private string _contentType;
private immutable(void)[] _content;
string contentType() const {
return _contentType;
}
immutable(ubyte)[] getData() {
return cast(immutable(ubyte)[]) _content;
}
}
/// Describes the info collected about your class
struct ReflectionInfo {