summaryrefslogtreecommitdiff
path: root/views/view.h
diff options
context:
space:
mode:
Diffstat (limited to 'views/view.h')
-rw-r--r--views/view.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/views/view.h b/views/view.h
index ab11717..f81885f 100644
--- a/views/view.h
+++ b/views/view.h
@@ -72,12 +72,12 @@ protected:
map < string, string > stringTokens;
map < string, int > intTokens;
void Action(void);
- void Draw(map < string, vector< map< string, string > > > *loopTokens = NULL);
+ void ClearTokens(void);
public:
cViewElement(cTemplateViewElement *tmplViewElement);
virtual ~cViewElement();
- virtual void Render(void) {};
- void Clear(void);
+ virtual bool Render(void) { return false; };
+ bool Starting(void) { return Running(); };
};
class cViewListItem : public cView {