Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / view / signal.cpp
index ad139f7e4ad21cbbb79a03355aa1917fdfbd2d03..065715aa7a996fd0c01f7aaf3763788a95f0658e 100644 (file)
  * 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 <http://www.gnu.org/licenses/>.
  */
 
 #include <extdef.h>
 
-#include <assert.h>
+#include <cassert>
 #include <cmath>
 
 #include <QApplication>
@@ -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",
@@ -60,7 +60,7 @@ const char *const ChannelNames[] = {
 };
 
 Signal::Signal(pv::Session &session,
-       std::shared_ptr<data::SignalBase> channel) :
+       shared_ptr<data::SignalBase> channel) :
        Trace(channel),
        session_(session),
        scale_handle_(make_shared<SignalScaleHandle>(*this)),
@@ -183,5 +183,6 @@ void Signal::on_enabled_changed(bool enabled)
                owner_->extents_changed(true, true);
 }
 
-} // namespace view
+} // namespace TraceView
+} // namespace views
 } // namespace pv