Files
epics-base/src/ca/legacy/pcas
..
2013-12-17 12:54:04 -06:00
2010-12-16 15:15:52 -05:00
2010-12-16 15:15:52 -05:00
2010-12-16 17:05:05 -05:00
2016-05-22 14:38:18 +02:00
2010-12-16 15:15:52 -05:00

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