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