[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

questions of static class?



hi all,
    who can tell me what action does the static class?
how it act as ?
e.g.
 
static class DropTailClass : public TclClass {
 public:
 DropTailClass() : TclClass("Queue/DropTail") {}
 TclObject* create(int, const char*const*) {
  return (new DropTail);
 }
} class_drop_tail;
 
any help is appreciated.
 
                Jim Yang