laforge
/
openbts-osmo
Archived
1
0
Fork 0
This repository has been archived on 2022-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
openbts-osmo/public-trunk/CommonLibs
David A. Burgess fa179f74b7 Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
..
BitVector.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
BitVector.h Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
BitVectorTest.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Configuration.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Configuration.h Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
ConfigurationTest.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
F16.h Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
F16Test.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Interthread.h Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
InterthreadTest.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
LinkedLists.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
LinkedLists.h Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
LogTest.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Logger.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Logger.h Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Makefile.am Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Makefile.in Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
README.common Initial import of OpenBTS 2.6 for a new public trunk. 2010-05-23 19:42:16 -07:00
Regexp.h Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
RegexpTest.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Sockets.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Sockets.h Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
SocketsTest.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Threads.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Threads.h Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Timeval.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Timeval.h Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
TimevalTest.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
Vector.h Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
VectorTest.cpp Change license to AGPLv3. 2010-07-04 15:28:06 -07:00
example.config Initial import of OpenBTS 2.6 for a new public trunk. 2010-05-23 19:42:16 -07:00

README.common

This directory contains common-use classes, most of which are not specific to GSM.

Vector		A vector class (NOT std::vector<>) that supports
		aliased subvectors.  Not resizable.
BitVector	Bit-indexable vectors based on Vector.
Interthread	A set of C++ wrappers for pthread facilities.
Sockets		A set of C++ wrappers for Unix sockets.
Timeval		A C++ wraper for struct timeval.
LinkLists	Classes for simple linked lists of pointers.

Do "make tests" to build a series of unit tests for these classes.