diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-08-07 10:08:11 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-08-07 10:08:11 +0200 |
commit | 0bb9b364693659a184862771f98a4b6046587073 (patch) | |
tree | 6db0cbbc94818634e8c137bf594b9a8937f770de /src/fig/FIGCarousel.cpp | |
parent | 8f347e6eeb809cd51a561768619e0a64c86a469e (diff) | |
download | dabmux-0bb9b364693659a184862771f98a4b6046587073.tar.gz dabmux-0bb9b364693659a184862771f98a4b6046587073.tar.bz2 dabmux-0bb9b364693659a184862771f98a4b6046587073.zip |
Create namespace for FIC stuff
Diffstat (limited to 'src/fig/FIGCarousel.cpp')
-rw-r--r-- | src/fig/FIGCarousel.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fig/FIGCarousel.cpp b/src/fig/FIGCarousel.cpp index e3c49d6..8986a18 100644 --- a/src/fig/FIGCarousel.cpp +++ b/src/fig/FIGCarousel.cpp @@ -31,6 +31,8 @@ #include <iostream> #include <deque> +namespace FIC { + /**************** FIGCarouselElement ****************/ void FIGCarouselElement::reduce_deadline() { @@ -211,3 +213,5 @@ size_t FIGCarousel::carousel( return bufsize - available_size; } +} // namespace FIC + |