@@ -493,7 +493,7 @@ using std::string;
493
493
// ! (matrix) 2-dimensional array
494
494
template <typename T>
495
495
bool show (T** data, uint64_t arrRows, uint64_t arrCols,
496
- const string& htmlPageName = dvs::kAppName , const Config& configuration = Config());
496
+ const string& htmlPageName = dvs::makeUniqueDavisHtmlName() , const Config& configuration = Config());
497
497
498
498
template <typename T>
499
499
bool save (T** data, uint64_t arrRows, uint64_t arrCols, const string& filename,
@@ -502,15 +502,15 @@ bool save(T** data, uint64_t arrRows, uint64_t arrCols, const string& filename,
502
502
// ! (matrix) 1-dimensional array that simulates a 2-dimensional one (element access [i*cols+j])
503
503
template <typename T>
504
504
bool show (const T* data, uint64_t arrRows, uint64_t arrCols,
505
- const string& htmlPageName = dvs::kAppName , const Config& configuration = Config());
505
+ const string& htmlPageName = dvs::makeUniqueDavisHtmlName() , const Config& configuration = Config());
506
506
507
507
template <typename T>
508
508
bool save (const T* data, uint64_t arrRows, uint64_t arrCols, const string& filename,
509
509
const configSaveToDisk& configuration = configSaveToDisk());
510
510
511
511
// ! (chart) 1-dimensional array
512
512
template <typename T>
513
- bool show (const T* data, uint64_t count, const string& htmlPageName = dvs::kAppName , const Config& configuration = Config());
513
+ bool show (const T* data, uint64_t count, const string& htmlPageName = dvs::makeUniqueDavisHtmlName() , const Config& configuration = Config());
514
514
515
515
template <typename T>
516
516
bool save (const T* data, uint64_t count, const string& filename, const configSaveToDisk& configuration = configSaveToDisk());
@@ -519,7 +519,7 @@ bool save(const T* data, uint64_t count, const string& filename, const configSav
519
519
template <typename C, // https://devblogs.microsoft.com/oldnewthing/20190619-00/?p=102599
520
520
typename T = std::decay_t <decltype (*std::begin (std::declval<C>()))>,
521
521
typename = std::enable_if_t<std::is_convertible_v<T, double>> >
522
- bool show(C const & container, const string& htmlPageName = dvs::kAppName , const Config& configuration = Config());
522
+ bool show(C const & container, const string& htmlPageName = dvs::makeUniqueDavisHtmlName() , const Config& configuration = Config());
523
523
524
524
template <typename C,
525
525
typename T = std::decay_t <decltype (*std::begin (std::declval<C>()))>,
@@ -531,7 +531,7 @@ bool save(C const& container, const string& filename, const configSaveToDisk& co
531
531
template <typename C, // https://devblogs.microsoft.com/oldnewthing/20190619-00/?p=102599
532
532
typename T = std::decay_t <decltype (*std::begin (std::declval<C>()))>,
533
533
typename = std::enable_if_t<std::is_convertible_v<T, double>> >
534
- bool show(C const & containerX, C const & containerY, const string& htmlPageName = dvs::kAppName , const Config& configuration = Config());
534
+ bool show(C const & containerX, C const & containerY, const string& htmlPageName = dvs::makeUniqueDavisHtmlName() , const Config& configuration = Config());
535
535
536
536
template <typename C, // https://devblogs.microsoft.com/oldnewthing/20190619-00/?p=102599
537
537
typename T = std::decay_t <decltype (*std::begin (std::declval<C>()))>,
@@ -544,7 +544,7 @@ template<typename C,
544
544
typename E = std::decay_t <decltype (*std::begin (std::declval<C>()))>,
545
545
typename T = std::decay_t<decltype(*std::begin (std::declval<E>()))>,
546
546
typename = std::enable_if_t<std::is_convertible_v<T, double>> >
547
- bool show(C const & container_of_containers, const string& htmlPageName = dvs::kAppName , const Config& configuration = Config());
547
+ bool show(C const & container_of_containers, const string& htmlPageName = dvs::makeUniqueDavisHtmlName() , const Config& configuration = Config());
548
548
549
549
template <typename C,
550
550
typename E = std::decay_t <decltype (*std::begin (std::declval<C>()))>,
0 commit comments