16 lines
386 B
C++
16 lines
386 B
C++
/*factory.h*/
|
|
/**
|
|
* Copyright - See the COPYRIGHT that is included with this distribution.
|
|
* EPICS pvDataCPP is distributed subject to a Software License Agreement found
|
|
* in file LICENSE that is included with this distribution.
|
|
*/
|
|
#ifndef FACTORY_H
|
|
#define FACTORY_H
|
|
|
|
namespace epics { namespace pvData {
|
|
|
|
enum DebugLevel{noDebug,lowDebug,highDebug};
|
|
|
|
}}
|
|
#endif /*FACTORY_H */
|