// ////////////////////////////////////////////////////////
// Copyright (1994) Columbia University
// Department of Biochemistry and Molecular Biophysics
//
// Author: Weider Chang, Ph.D
// ///////////////////////////////////////////////////////

#ifndef _WDCOBJECT_H_
#define _WDCOBJECT_H_
 
#include <objc/Object.h>

@interface WDCObject : Object
{
  id _appSpecObject;
}

- setAppSpecObject:anObject;
- getAppSpecObject;
- printForDebugger;

@end

#endif
