# HG changeset patch # User Hasan Yavuz ÖZDERYA # Date 2018-06-20 01:46:36 # Node ID 9fa4f585184bcce6ebbbda4fb420c395ec102097 # Parent 20c9c08a01812da49c4dddcb1320f4fa0f9d5361 rename new framebuffer2.h to framebuffer.h diff --git a/src/framebuffer2.h b/src/framebuffer.h rename from src/framebuffer2.h rename to src/framebuffer.h diff --git a/src/framebufferseries.h b/src/framebufferseries.h --- a/src/framebufferseries.h +++ b/src/framebufferseries.h @@ -24,8 +24,7 @@ #include #include -// TODO: rename when framebuffer.h is deleted -#include "framebuffer2.h" +#include "framebuffer.h" /** * This class provides an interface for actual FrameBuffer diff --git a/src/indexbuffer.h b/src/indexbuffer.h --- a/src/indexbuffer.h +++ b/src/indexbuffer.h @@ -1,5 +1,5 @@ /* - Copyright © 2017 Hasan Yavuz Özderya + Copyright © 2018 Hasan Yavuz Özderya This file is part of serialplot. @@ -20,8 +20,7 @@ #ifndef INDEXBUFFER_H #define INDEXBUFFER_H -// IMPORTANT TODO: rename to "framebuffer.h" when stream work is done. -#include "framebuffer2.h" +#include "framebuffer.h" /// A simple frame buffer that simply returns requested index as /// sample value. diff --git a/src/linindexbuffer.h b/src/linindexbuffer.h --- a/src/linindexbuffer.h +++ b/src/linindexbuffer.h @@ -1,5 +1,5 @@ /* - Copyright © 2017 Hasan Yavuz Özderya + Copyright © 2018 Hasan Yavuz Özderya This file is part of serialplot. @@ -20,8 +20,7 @@ #ifndef LININDEXBUFFER_H #define LININDEXBUFFER_H -// IMPORTANT TODO: rename to "framebuffer.h" when stream work is done. -#include "framebuffer2.h" +#include "framebuffer.h" /// A dynamic frame buffer that start and end values can be set and /// intermediate values are calculated linearly. diff --git a/src/readonlybuffer.h b/src/readonlybuffer.h --- a/src/readonlybuffer.h +++ b/src/readonlybuffer.h @@ -1,5 +1,5 @@ /* - Copyright © 2017 Hasan Yavuz Özderya + Copyright © 2018 Hasan Yavuz Özderya This file is part of serialplot. @@ -20,8 +20,7 @@ #ifndef READONLYBUFFER_H #define READONLYBUFFER_H -// IMPORTANT TODO: rename to "framebuffer.h" when stream work is done. -#include "framebuffer2.h" +#include "framebuffer.h" /// A read only frame buffer used for storing snapshot data. Main advantage of /// this compared to `RingBuffer` is that reading data should be somewhat diff --git a/src/ringbuffer.h b/src/ringbuffer.h --- a/src/ringbuffer.h +++ b/src/ringbuffer.h @@ -1,5 +1,5 @@ /* - Copyright © 2017 Hasan Yavuz Özderya + Copyright © 2018 Hasan Yavuz Özderya This file is part of serialplot. @@ -20,8 +20,7 @@ #ifndef RINGBUFFER_H #define RINGBUFFER_H -// IMPORTANT TODO: rename to "framebuffer.h" when stream work is done. -#include "framebuffer2.h" +#include "framebuffer.h" /// A fast buffer implementation for storing data. class RingBuffer : public WFrameBuffer diff --git a/src/stream.h b/src/stream.h --- a/src/stream.h +++ b/src/stream.h @@ -29,7 +29,7 @@ #include "source.h" #include "channelinfomodel.h" #include "streamchannel.h" -#include "framebuffer2.h" +#include "framebuffer.h" /** * Main waveform storage class. It consists of channels. Channels are diff --git a/src/streamchannel.h b/src/streamchannel.h --- a/src/streamchannel.h +++ b/src/streamchannel.h @@ -20,9 +20,7 @@ #ifndef STREAMCHANNEL_H #define STREAMCHANNEL_H -// IMPORTANT TODO: rename to "framebuffer.h" when stream work is done. -#include "framebuffer2.h" - +#include "framebuffer.h" #include "channelinfomodel.h" class StreamChannel