Files
epics-base/src/cas
Andrew Johnson cbde3ea9fd cas: Added propertyEventMask support
Allows server tools to send DBE_PROPERTY events to clients.
New functionality not tested, but fairly trivial and doesn't
break existing server tools.
2012-11-30 17:42:47 -06:00
..
2011-11-14 12:33:07 -06:00
2002-07-12 21:35:43 +00:00
2010-10-05 14:27:37 -05:00
1999-09-02 21:50:29 +00:00

$Revision-Id$

README file for the EPICS Channel Access Server

Author Jeff Hill johill@lanl.gov 


Directory Structure
-------------------
o example - 		example server tool
o generic - 		generic server lib source code 
o os -			os dependnet server lib source code
o io -			io dependnet server lib source code
o build/singleThread -	server lib object code for single threaded use 
o build/multiThread -	server lib object code for multi threaded use 

Internal Source Code Naming Conventions
---------------------------------------
o API class X will almost always have associated internal (usually 
	private base) class named XI
o for class X there will 
	o sometimes be X.h - the class declaration (and simple inlines)
	o sometimes be XIL.h - complex inline functions (that will not
		compile unless the compiler has seen
		the declarations of other classes)
	o be X.cc - all other source code for the class