X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fsignal.cpp;h=0ee89a1f23a403df763ae56a33319fb07fc439a7;hp=8dd329e0f7fd947c08717068e58dd4999307c827;hb=efdec55aec1a137460fa362a381ed1904182bfed;hpb=aecae05c598b1fe914253b980aa6ad43b85f562b diff --git a/pv/view/signal.cpp b/pv/view/signal.cpp index 8dd329e..0ee89a1 100644 --- a/pv/view/signal.cpp +++ b/pv/view/signal.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include @@ -40,7 +39,8 @@ using std::shared_ptr; using std::make_shared; namespace pv { -namespace view { +namespace views { +namespace TraceView { const char *const ChannelNames[] = { "CLK", @@ -91,6 +91,16 @@ shared_ptr Signal::base() const return base_; } +void Signal::save_settings(QSettings &settings) const +{ + (void)settings; +} + +void Signal::restore_settings(QSettings &settings) +{ + (void)settings; +} + const ViewItemOwner::item_list& Signal::child_items() const { return items_; @@ -173,5 +183,6 @@ void Signal::on_enabled_changed(bool enabled) owner_->extents_changed(true, true); } -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv