File: README.md

package info (click to toggle)
sight 25.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 42,180 kB
  • sloc: cpp: 289,476; xml: 17,257; ansic: 9,878; python: 1,379; sh: 144; makefile: 33
file content (25 lines) | stat: -rw-r--r-- 1,046 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# sight::core

lowest library in _sight_. it defines core classes, communication, logging and threading mechanisms. it also brings the runtime library used to discover and load modules.

## structure

here is the list of folders in this library:

- **com**: defines signals, slots, and connections.
- **progress**: defines classes to provide progress feedback.
- **log**: provides the core developer log features (spy_log), as well as a user log.
- **memory**: handles memory allocation for big data buffers, like the ones found in images and meshes.
- **mt**: defines core thread synchronizations objects (mutexes).
- **reflection**: core classes to provide type reflection in our data.
- **runtime**: defines extensions mechanism, discovers and loads modules.
- **thread**: defines worker threads, timers, and tasks.
- **tools**: defines many utility classes to manipulate types, unique identifiers, float numbers comparison, os functions, etc.

## how to use it

### cmake

```cmake
target_link_libraries( my_target <PUBLIC|PRIVATE> core)
```