Skip to content

simoncl2/snowplow-cpp-tracker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

snowplow-cpp-tracker

Snowplow event tracker for C++. Add analytics to your C++ applications, servers and games

## OSX
g++ \
  -std=c++11 \
  -l sqlite3 \
  -framework CoreFoundation \
  -framework CFNetwork \
  src/vendored/*.cpp \
  src/*.cpp \
  src/test/*.cpp \
  -o build/test && \
  ./build/test

General layout:

tracker; Subject subject; screen res -> Optional emitter; Storage storage/event store;

Has to be singleton

tracker.Track -> Uses main thread (or new thread) -> Writes to database; check database for range of events -> send them all on indivdual threads;

About

UNRELEASED. Snowplow event tracker for C++. Add analytics to your C++ applications, servers and games

Resources

License

Stars

0 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C 84.8%
  • C++ 15.2%