Merge branch 'develop' of https://github.com/bramton/lms into develop
This commit is contained in:
@@ -29,7 +29,7 @@ RandGenerator& getRandGenerator()
|
|||||||
return randGenerator;
|
return randGenerator;
|
||||||
}
|
}
|
||||||
|
|
||||||
RandGenerator createSeededGenerator(std::size_t seed)
|
RandGenerator createSeededGenerator(uint_fast32_t seed)
|
||||||
{
|
{
|
||||||
return RandGenerator {seed};
|
return RandGenerator {seed};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ namespace Random {
|
|||||||
using RandGenerator = std::mt19937;
|
using RandGenerator = std::mt19937;
|
||||||
RandGenerator& getRandGenerator();
|
RandGenerator& getRandGenerator();
|
||||||
|
|
||||||
RandGenerator createSeededGenerator(std::size_t seed);
|
RandGenerator createSeededGenerator(uint_fast32_t seed);
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
T
|
T
|
||||||
|
|||||||
@@ -20,6 +20,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <unordered_map>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include <Wt/WComboBox.h>
|
#include <Wt/WComboBox.h>
|
||||||
|
|||||||
@@ -20,6 +20,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <optional>
|
#include <optional>
|
||||||
|
#include <unordered_map>
|
||||||
|
|
||||||
#include <Wt/WContainerWidget.h>
|
#include <Wt/WContainerWidget.h>
|
||||||
#include <Wt/WTemplate.h>
|
#include <Wt/WTemplate.h>
|
||||||
|
|||||||
@@ -20,6 +20,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <optional>
|
#include <optional>
|
||||||
|
#include <unordered_map>
|
||||||
|
|
||||||
#include <Wt/WContainerWidget.h>
|
#include <Wt/WContainerWidget.h>
|
||||||
#include <Wt/WTemplate.h>
|
#include <Wt/WTemplate.h>
|
||||||
|
|||||||
@@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
#include "DownloadResource.hpp"
|
#include "DownloadResource.hpp"
|
||||||
|
|
||||||
|
#include <array>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
|
||||||
|
|||||||
@@ -18,6 +18,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
#include <array>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user