diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-09-12 00:22:33 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-09-12 00:22:33 +0000 |
commit | d19ada0aa88aba1c7b439035c0028440ac860ec3 (patch) | |
tree | fb8cde98650aa66fcdb736b045f541eac1b8b93a /src/viewer.cpp | |
parent | 97d529fac68105f0d3d34c699a4ac10489c705e8 (diff) | |
download | build-d19ada0aa88aba1c7b439035c0028440ac860ec3.tar.gz build-d19ada0aa88aba1c7b439035c0028440ac860ec3.tar.bz2 build-d19ada0aa88aba1c7b439035c0028440ac860ec3.tar.xz build-d19ada0aa88aba1c7b439035c0028440ac860ec3.zip |
Build now builds, it has viewers, and dependancy checking, and everything works.
Now we have to add cleaning, caching, and more viewer hooks / viewers.
Diffstat (limited to '')
-rw-r--r-- | src/viewer.cpp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/viewer.cpp b/src/viewer.cpp index 93b2ac1..51acc3b 100644 --- a/src/viewer.cpp +++ b/src/viewer.cpp | |||
@@ -7,3 +7,48 @@ Viewer::Viewer() | |||
7 | Viewer::~Viewer() | 7 | Viewer::~Viewer() |
8 | { | 8 | { |
9 | } | 9 | } |
10 | |||
11 | void Viewer::beginAction( const std::string &sName, int nCommands ) | ||
12 | { | ||
13 | } | ||
14 | |||
15 | void Viewer::endAction() | ||
16 | { | ||
17 | } | ||
18 | |||
19 | void Viewer::beginCommand( Action::eAction nAct, const std::string &sTarget, int nPerforms ) | ||
20 | { | ||
21 | } | ||
22 | |||
23 | void Viewer::endCommand() | ||
24 | { | ||
25 | } | ||
26 | |||
27 | void Viewer::beginRequiresCheck( bool bCached, const std::string &sName ) | ||
28 | { | ||
29 | } | ||
30 | |||
31 | void Viewer::endRequiresCheck() | ||
32 | { | ||
33 | } | ||
34 | |||
35 | void Viewer::beginPerform( Perform *pPerform ) | ||
36 | { | ||
37 | } | ||
38 | |||
39 | void Viewer::endPerform() | ||
40 | { | ||
41 | } | ||
42 | |||
43 | void Viewer::beginExecute() | ||
44 | { | ||
45 | } | ||
46 | |||
47 | void Viewer::endExecute() | ||
48 | { | ||
49 | } | ||
50 | |||
51 | void Viewer::executeCmd( const std::string &sCmd ) | ||
52 | { | ||
53 | } | ||
54 | |||