Initial import of the CDE 2.1.30 sources from the Open Group.

This commit is contained in:
Peter Howkins
2012-03-10 18:21:40 +00:00
commit 83b6996daa
18978 changed files with 3945623 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/* $XConsortium: LcfTask.h /main/2 1996/07/18 16:46:47 drk $ */
#ifndef LCF_TASK_H
#define LCF_TASK_H
#include "Task.h"
class NodeTask;
class LcfTask : public ComplexTask{
friend class NodeTask;
public:
LcfTask( NodeTask *f_parent , const Token &t );
void markup(const Token& t);
protected:
void reset();
void write_record();
// void setNode(NodeTask *n) { f_node = n; }
private:
NodeTask *f_node;
int f_base;
};
#endif /* LcfTask.h */