ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/GoogleTron/FileSystem.hpp
Revision: 713
Committed: 2006-03-27T00:50:21-08:00 (19 years, 2 months ago) by douglas
File size: 731 byte(s)
Log Message:
Stuff and things...

File Contents

# Content
1 // File System
2 //
3 // Douglas Thrift
4 //
5 // $Id$
6
7 #ifndef _FileSystem_hpp_
8 #define _FileSystem_hpp_
9
10 #include <cxx/platform.hpp>
11
12 #ifdef MENES_PRAGMA_ONCE
13 #pragma once
14 #endif
15
16 #include "Command.hpp"
17
18 struct FileSystemCommand : public Command
19 {
20 FileSystemCommand(const cse::String &root) : Command(root) {}
21 };
22
23 class FileSystem : public CommandRunner
24 {
25 void Directory(const api::Path &directory, const cse::String &base, bool root = false);
26 void File(const api::Path &directory, const cse::String &base, const Subversion::Entry &entry);
27 public:
28 FileSystem(const cse::String &sitemap, const cse::String &base, ext::Queue<Url> &queue, api::ThreadMutex &queueLock, const _R<FileSystemCommand> &command);
29 };
30
31 #endif//_FileSystem_hpp_

Properties

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