Arman Uguray | 234138e | 2015-10-06 15:56:36 -0700 | [diff] [blame] | 1 | This directory contains all the "common" sources between the bluetooth daemon |
| 2 | and our client library. All source files here are under the "bluetooth" |
| 3 | subdirectory, which is the exported root path for the client static library. |
| 4 | Only common files should go here. All headers that go into common/bluetooth must |
| 5 | only include other headers from common/bluetooth and must use "bluetooth" as the |
| 6 | root path, e.g.: |
| 7 | |
| 8 | #include <bluetooth/uuid.h> |
| 9 | |
| 10 | This is so that client applications that link against the client library have |
| 11 | one common include path exported to them, and our headers can find eachother |
| 12 | within that. |